Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request involves renaming and updating package references across multiple files to ensure consistency in the project structure. The most important changes include renaming the packages from
org.inputmethod
tocom.android.inputmethod
and updating the import statements accordingly.Package renaming and import updates:
app/src/main/java/com/android/inputmethod/keyboard/ProximityInfo.java
: Renamed package fromorg.inputmethod.keyboard
tocom.android.inputmethod.keyboard
.app/src/main/java/com/android/inputmethod/latin/BinaryDictionary.java
: Renamed package fromorg.inputmethod.latin
tocom.android.inputmethod.latin
and updated import statements forBinaryDictionaryUtils
andWordInputEventForPersonalization
. [1] [2]app/src/main/java/com/android/inputmethod/latin/DicTraverseSession.java
: Renamed package fromorg.inputmethod.latin
tocom.android.inputmethod.latin
.app/src/main/java/com/android/inputmethod/latin/utils/BinaryDictionaryUtils.java
: Renamed package fromorg.inputmethod.latin.utils
tocom.android.inputmethod.latin.utils
and updated import statement forBinaryDictionary
.app/src/main/java/com/android/inputmethod/latin/utils/WordInputEventForPersonalization.java
: Renamed package fromorg.inputmethod.latin.utils
tocom.android.inputmethod.latin.utils
.Additional updates to import statements:
app/src/main/java/org/oscar/kb/keyboard/Keyboard.java
: Updated import statement forProximityInfo
to reflect the new package name.app/src/main/java/org/oscar/kb/keyboard/KeyboardLayout.java
: Updated import statement forProximityInfo
to reflect the new package name.app/src/main/java/org/oscar/kb/latin/ContactsBinaryDictionary.java
: Updated import statement forBinaryDictionary
to reflect the new package name.app/src/main/java/org/oscar/kb/latin/ExpandableBinaryDictionary.java
: Updated import statement forBinaryDictionary
to reflect the new package name.app/src/main/java/org/oscar/kb/latin/ReadOnlyBinaryDictionary.java
: Updated import statement forBinaryDictionary
to reflect the new package name.Minor code corrections:
app/src/main/java/org/oscar/kb/latin/setup/SetupWizardActivity.java
: Fixed a syntax error by removing an unnecessary semicolon.See the contributing readme for more detailed guideline, please understand and accept them: https://github.com/Helium314/HeliBoard/blob/main/CONTRIBUTING.mdtl;dr (you should still read the full list though):
Further