mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-25 17:57:41 +00:00
chore(android): address code review comments
Some checks failed
Keyman Build Summary / Summarize build status checks (push) Has been cancelled
Some checks failed
Keyman Build Summary / Summarize build status checks (push) Has been cancelled
Sample apps should not reference the project but the .aar instead.
This commit is contained in:
parent
d74e2cd3a4
commit
8f62333e99
6 changed files with 4 additions and 10 deletions
|
|
@ -59,7 +59,8 @@ dependencies {
|
|||
implementation 'androidx.appcompat:appcompat:1.7.0'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
|
||||
implementation 'com.google.android.material:material:1.12.0'
|
||||
implementation project(':keyman-engine')
|
||||
// intentionally not referencing the keyman-engine project but the .aar instead
|
||||
implementation files('libs/keyman-engine.aar')
|
||||
implementation 'androidx.preference:preference:1.2.1'
|
||||
implementation 'androidx.webkit:webkit:1.14.0'
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@ buildscript {
|
|||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:8.9.2'
|
||||
classpath 'name.remal:gradle-plugins:1.9.2'
|
||||
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
|
|
@ -18,6 +17,5 @@ allprojects {
|
|||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
maven { url "https://jitpack.io" }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1 @@
|
|||
include ':app'
|
||||
include ':keyman-engine'
|
||||
project(':keyman-engine').projectDir = new File(settingsDir, '../../KMEA/app')
|
||||
|
|
@ -59,7 +59,8 @@ dependencies {
|
|||
implementation 'androidx.appcompat:appcompat:1.7.0'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
|
||||
implementation 'com.google.android.material:material:1.12.0'
|
||||
implementation project(':keyman-engine')
|
||||
// intentionally not referencing the keyman-engine project but the .aar instead
|
||||
implementation files('libs/keyman-engine.aar')
|
||||
implementation 'androidx.preference:preference:1.2.1'
|
||||
implementation 'androidx.webkit:webkit:1.14.0'
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@ buildscript {
|
|||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:8.9.2'
|
||||
classpath 'name.remal:gradle-plugins:1.9.2'
|
||||
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
|
|
@ -18,6 +17,5 @@ allprojects {
|
|||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
maven { url "https://jitpack.io" }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1 @@
|
|||
include ':app'
|
||||
include ':keyman-engine'
|
||||
project(':keyman-engine').projectDir = new File(settingsDir, '../../KMEA/app')
|
||||
Loading…
Add table
Reference in a new issue