- Mar 20, 2023
-
-
Treehugger Robot authored
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2445925 Change-Id: I7efbfd50628298c436cb86d5d84af6cbfa7918da Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Treehugger Robot authored
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2445925 Change-Id: I2bae39a9a7e659300a47203f1b4c99a94c386513 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Treehugger Robot authored
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2445925 Change-Id: I996fc354112500e41977b93521e9050bdccce81b Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Treehugger Robot authored
-
- Mar 19, 2023
-
-
Jing Mike authored
Since some variables with module LatinIME are defined but not used, when compiled with build combination "sdk_pc_x86_64-userdebug" and build command "mmm packages/inputmethods/LatinIME", the following code lines will be reported that "variable 'XXX' set but not used". (should be similar for all the other build combinations) Repeated 10 times for each: terminal_position_lookup_table.cpp:74:9 removedEntryCount terminal_position_lookup_table.cpp:85:9 removedEntryCount proximity_info_state_utils.cpp:493:9 tempTime trie_map.cpp:56:9 unusedRegionSize suggestion_results.cpp:100:9 index Repeated 80+ times: proximity_info_utils.h:75:25 proximityChar With this patch we are removing some of the unused variables and putting the C++ 17 attribute [[maybe_unused]] to the others which are used for logging. Then all the related build warnings have been eliminated. Test: mmm packages/inputmethods/LatinIME, presubmit check. Change-Id: Ia66766322d6ae8a010b1cb55cc22993fbc6d012c Signed-off-by:
Jing Mike <jingyangliu@eswincomputing.com>
-
- Mar 14, 2023
-
-
Michael Groover authored
-
- Mar 09, 2023
-
-
Cole Faust authored
NewApi was recently updated to support linting methods in the system, module_lib, and system_server sdks, and was demoted to a warning due to the new issues it finds. Baseline all the new issues that NewApi can be made an error again. These cls were generated automatically by a script that copied the NewApi issues from the reference baselines. Bug: 268261262 Test: m lint-check Change-Id: I99bb901018da30f39cf799ac6c939863266cee34
-
Michael Groover authored
Android T allows apps to declare a runtime receiver as not exported by invoking registerReceiver with a new RECEIVER_NOT_EXPORTED flag; receivers registered with this flag will only receive broadcasts from the platform and the app itself. However to ensure developers can properly protect their receivers, all apps targeting U and registering a receiver for non-system broadcasts must specify either the exported or not exported flag when invoking registerReceiver; if one of these flags is not provided, the platform will throw a SecurityException. This commit updates the dictionary receivers with the RECEIVER_NOT_EXPORTED flag since these are only sent from the local app. The HIDE_SOFT_INPUT receiver is flagged with the RECEIVER_EXPORTED flag since it can be sent by any app with the corresponding permission. Bug: 234659204 Test: Build Change-Id: I2b9a1360e0eb1c1965c07cc71dca9f11eb153517
-
- Dec 12, 2022
-
-
Julien Desprez authored
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/20710172 Bug: 261855411 Change-Id: Ieaf01b3acea9cad11e2bc6d3d61a6b5811855c52
-
Julien Desprez authored
Carry the exact same options. Test: presubmit Bug: 261855411 Change-Id: Ic48ffa4fec4ebf2027525476bf346abce3f0a1b0
-
- Oct 17, 2022
-
-
Treehugger Robot authored
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2256807 Change-Id: I0b54d410fdabe3424e0eff31153048e474e93923 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Treehugger Robot authored
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2256807 Change-Id: Ie8d7a908adb83e2556d7b2d27beecc0e29978173 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Treehugger Robot authored
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2256807 Change-Id: I7d8662bdc880e331cf2d912dae7cc18b70743975 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Treehugger Robot authored
-
Cole Faust authored
This commit is part of a large scale change to fix errorprone errors that have been downgraded to warnings in the android source tree, so that they can be promoted to errors again. The full list of changes include the following, but not all will be present in any one individual commit: BadAnnotationImplementation BadShiftAmount BanJNDI BoxedPrimitiveEquality ComparableType ComplexBooleanConstant CollectionToArraySafeParameter ConditionalExpressionNumericPromotion DangerousLiteralNull DoubleBraceInitialization DurationFrom DurationTemporalUnit EmptyTopLevelDeclaration EqualsNull EqualsReference FormatString FromTemporalAccessor GetClassOnAnnotation GetClassOnClass HashtableContains IdentityBinaryExpression IdentityHashMapBoxing InstantTemporalUnit InvalidTimeZoneID InvalidZoneId IsInstanceIncompatibleType JUnitParameterMethodNotFound LockOnBoxedPrimitive MathRoundIntLong MislabeledAndroidString MisusedDayOfYear MissingSuperCall MisusedWeekYear ModifyingCollectionWithItself NoCanIgnoreReturnValueOnClasses NonRuntimeAnnotation NullableOnContainingClass NullTernary OverridesJavaxInjectableMethod ParcelableCreator PeriodFrom PreconditionsInvalidPlaceholder ProtoBuilderReturnValueIgnored ProtoFieldNullComparison RandomModInteger RectIntersectReturnValueIgnored ReturnValueIgnored SelfAssignment SelfComparison SelfEquals SizeGreaterThanOrEqualsZero StringBuilderInitWithChar TreeToString TryFailThrowable UnnecessaryCheckNotNull UnusedCollectionModifiedInPlace XorPower See https://errorprone.info/bugpatterns for more information on the checks. Bug: 253827323 Test: m RUN_ERROR_PRONE=true javac-check Change-Id: I454a105ae82484a2d19aff1808e8d9dd55ba64f4
-
- Sep 21, 2022
-
-
Rhed Jao authored
Bug: 179783492 Bug: 179783499 Bug: 216823971 Test: atest LatinIMETests Change-Id: I309ffefe261049a5d3abce8e16829cd66f9123dc
-
- Aug 24, 2022
-
-
Treehugger Robot authored
Merge "Fix array-related errorprone warnings" am: 370d41de am: 3a06d618 am: e546038c am: 51466cff am: 2549e988 Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186538 Change-Id: Idd10a3df6c0a34fe3d14d493a8af5b64338f298f Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Treehugger Robot authored
Merge "Fix array-related errorprone warnings" am: 370d41de am: 3a06d618 am: e546038c am: 51466cff Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186538 Change-Id: Ib3878ed212ae13dddd9761aefda2960cb7defbb4 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Treehugger Robot authored
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186538 Change-Id: I609ca003a48f3eb2a323ed456fc54d5754bd694f Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Treehugger Robot authored
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186538 Change-Id: Ic25b4e765f6612409aa840c7e4dc392d99fb254a Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Treehugger Robot authored
Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186538 Change-Id: I8c9cc9d63affa572ca6bf79ff156f69f7ee96db1 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Treehugger Robot authored
-
- Aug 17, 2022
-
-
Xin Li authored
[automerger skipped] Merge "DO NOT MERGE - Merge Android 13" am: 7005e0c1 -s ours am: b34de510 -s ours am: a8004dc4 -s ours am: 50ddfe15 -s ours am skip reason: subject contains skip directive Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186832 Change-Id: I4d5fbc004bbefa42848bceadf659d0a25a57afbd Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Xin Li authored
[automerger skipped] DO NOT MERGE - Merge Android 13 am: 2012c03a -s ours am: 9238ba58 -s ours am: c1790946 -s ours am: 7aa0255d -s ours am skip reason: subject contains skip directive Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186832 Change-Id: Icf9ef9d150be644dad93e1284f343ee178da1dc1 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Xin Li authored
[automerger skipped] Merge "DO NOT MERGE - Merge Android 13" am: 7005e0c1 -s ours am: b34de510 -s ours am: a8004dc4 -s ours am skip reason: Merged-In Ib4b72e0a277d8b2fb78837bed5d2e9cccd819a07 with SHA-1 f134ea38 is already in history Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186832 Change-Id: Ifc14b063977916d54bec38aa1d4f7f09bbe9d401 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Xin Li authored
[automerger skipped] DO NOT MERGE - Merge Android 13 am: 2012c03a -s ours am: 9238ba58 -s ours am: c1790946 -s ours am skip reason: Merged-In Ib4b72e0a277d8b2fb78837bed5d2e9cccd819a07 with SHA-1 f134ea38 is already in history Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186832 Change-Id: I35d476cbc57a934f0ba08a3ef203a1ec42ad7cd5 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
- Aug 16, 2022
-
-
Xin Li authored
[automerger skipped] Merge "DO NOT MERGE - Merge Android 13" am: 7005e0c1 -s ours am: b34de510 -s ours am skip reason: Merged-In Ib4b72e0a277d8b2fb78837bed5d2e9cccd819a07 with SHA-1 f134ea38 is already in history Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186832 Change-Id: I0aa5940a87d0a9cf5eb40d8d3841f0d0e6a7c310 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Xin Li authored
am skip reason: Merged-In Ib4b72e0a277d8b2fb78837bed5d2e9cccd819a07 with SHA-1 f134ea38 is already in history Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186832 Change-Id: I210262f2fe9ad726ae1c4c9a832ec6db5fd76a80 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Xin Li authored
am skip reason: Merged-In Ib4b72e0a277d8b2fb78837bed5d2e9cccd819a07 with SHA-1 f134ea38 is already in history Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186832 Change-Id: I2c79acfa20a9200db266fd982b142905ec8cf0b0 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Xin Li authored
am skip reason: Merged-In Ib4b72e0a277d8b2fb78837bed5d2e9cccd819a07 with SHA-1 f134ea38 is already in history Original change: https://android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/2186832 Change-Id: Ifa4bae36305d050c1a6b5a569ad471f85a9d51d5 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Xin Li authored
-
Xin Li authored
Bug: 242648940 Merged-In: Ib4b72e0a277d8b2fb78837bed5d2e9cccd819a07 Change-Id: Id6eef7910c3955e9dd6c49749406520d86e73dad
-
Cole Faust authored
The ArrayEquals, ArrayHashCode, ArrayToString, and ArraysAsListPrimitiveArray errorprone findings were demoted from errors to warnings. Fix existing occurrences of them so they can be made errors again. Bug: 242630963 Test: RUN_ERROR_PRONE=true m javac-check Change-Id: I689397a7196277de3fd301836e72f7555e2036cb
-
- Aug 10, 2022
-
-
Wilson Wu authored
The DownloadOverMeteredDialog is exported which may allow a app to prompt this dialog to ask the user to download dictionary. Since the app can control the download dictionary size and may show an incorrect size for user to make security concern. Make the activity not exported for apps to launch. Bug: 236688064 Test: Manual test as follow steps: 1. lunch aosp_bramble-userdebug and flash 2. Verify the AOSP keyboard work properly 3. Launch the PoC test app 4. Verify the DownloadOverMeteredDialog cannot be launched Change-Id: I9be92ba2813e7aaad0ef10555f585c5c8a25361f
-
- Jun 30, 2022
-
-
Xin Li authored
[automerger skipped] Merge tm-dev-plus-aosp-without-vendor@8763363 am: 0f20a651 -s ours am: 612860d4 -s ours am: 3b9989cf -s ours am: ee920394 -s ours am skip reason: Merged-In Ib4b72e0a277d8b2fb78837bed5d2e9cccd819a07 with SHA-1 f134ea38 is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/19094630 Change-Id: I7c5005a08310756d2879e65a8da6437a1c1bc961 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Xin Li authored
[automerger skipped] Merge tm-dev-plus-aosp-without-vendor@8763363 am: 0f20a651 -s ours am: 612860d4 -s ours am: 3b9989cf -s ours am skip reason: Merged-In Ib4b72e0a277d8b2fb78837bed5d2e9cccd819a07 with SHA-1 f134ea38 is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/19094630 Change-Id: Ic73fb15f7f2918bd2a5bb5f318abad607240209b Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
- Jun 29, 2022
-
-
Xin Li authored
[automerger skipped] Merge tm-dev-plus-aosp-without-vendor@8763363 am: 0f20a651 -s ours am: 612860d4 -s ours am skip reason: Merged-In Ib4b72e0a277d8b2fb78837bed5d2e9cccd819a07 with SHA-1 f134ea38 is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/19094630 Change-Id: I8e3947377fc021574b7d21f76873f4c119e355ce Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
Xin Li authored
am skip reason: Merged-In Ib4b72e0a277d8b2fb78837bed5d2e9cccd819a07 with SHA-1 f134ea38 is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/19094630 Change-Id: I096e09860be31172ba86e1770c15b59013b8af2d Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-
- Jun 27, 2022
-
-
Xin Li authored
Bug: 236760014 Merged-In: Ib4b72e0a277d8b2fb78837bed5d2e9cccd819a07 Change-Id: I9d0e133b64c2d6afb795eb049c58bc2ff5ab79b5
-
- Apr 21, 2022
-
-
Ming-Shin Lu authored
EditTextVariations: create a IME focusable overlay for test am: f134ea38 am: 1fbc8de4 am: 7e26debb Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/inputmethods/LatinIME/+/17759925 Change-Id: I523fa0961d42bba23610a814602cf2584f9367d0 Signed-off-by:
Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-