You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
56 lines
1.4 KiB
apply plugin: 'com.android.application'
|
|
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
buildToolsVersion '29.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId "org.chromium.latency.walt"
|
|
minSdkVersion 21
|
|
targetSdkVersion 29
|
|
versionCode 9
|
|
versionName "0.1.9"
|
|
}
|
|
|
|
externalNativeBuild.ndkBuild {
|
|
path 'src/main/jni/Android.mk'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
debug {
|
|
ndk {
|
|
debuggable true
|
|
}
|
|
}
|
|
}
|
|
|
|
ndkVersion "21.0.6113669"
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
implementation 'com.google.android.material:material:1.1.0'
|
|
implementation 'androidx.preference:preference:1.1.1'
|
|
implementation 'androidx.legacy:legacy-preference-v14:1.0.0'
|
|
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.1'
|
|
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
|
|
testImplementation 'junit:junit:4.13'
|
|
testImplementation 'org.mockito:mockito-core:1.10.19'
|
|
testImplementation ('org.powermock:powermock-api-mockito:1.6.6') {
|
|
exclude module: 'hamcrest-core'
|
|
exclude module: 'objenesis'
|
|
}
|
|
testImplementation ('org.powermock:powermock-module-junit4:1.6.6') {
|
|
exclude module: 'hamcrest-core'
|
|
exclude module: 'objenesis'
|
|
}
|
|
}
|