2018-11-08 04:04:37 +01:00
|
|
|
import groovy.xml.XmlUtil
|
|
|
|
|
|
|
|
apply plugin: 'com.android.application'
|
2019-07-03 19:44:37 +02:00
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2018-11-08 04:04:37 +01:00
|
|
|
|
|
|
|
android {
|
2019-06-03 17:23:09 +02:00
|
|
|
|
2019-09-19 12:38:36 +02:00
|
|
|
compileSdkVersion 29
|
|
|
|
buildToolsVersion '29.0.2'
|
2019-06-03 17:23:09 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2019-09-19 12:38:36 +02:00
|
|
|
minSdkVersion 29
|
|
|
|
targetSdkVersion 29
|
2019-08-06 08:16:37 +02:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2019-06-03 17:23:09 +02:00
|
|
|
}
|
2018-11-08 04:04:37 +01:00
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
targetCompatibility 1.8
|
|
|
|
sourceCompatibility 1.8
|
|
|
|
}
|
2019-07-09 19:22:24 +02:00
|
|
|
testOptions {
|
|
|
|
unitTests.all {
|
|
|
|
useJUnitPlatform()
|
|
|
|
testLogging {
|
|
|
|
events "passed", "skipped", "failed"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-03 20:51:58 +02:00
|
|
|
|
2019-08-20 13:04:09 +02:00
|
|
|
sourceSets {
|
|
|
|
test {
|
|
|
|
java.srcDirs += "$projectDir/src/sharedTest/java"
|
|
|
|
}
|
|
|
|
androidTest {
|
|
|
|
java.srcDirs += "$projectDir/src/sharedTest/java"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-03 20:51:58 +02:00
|
|
|
// optional signingConfigs
|
|
|
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
|
|
|
if (keystorePropertiesFile.exists()) {
|
|
|
|
def keystoreProperties = new Properties()
|
|
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
release {
|
|
|
|
keyAlias keystoreProperties['keyAlias']
|
|
|
|
keyPassword keystoreProperties['keyPassword']
|
|
|
|
storeFile file(keystoreProperties['storeFile'])
|
|
|
|
storePassword keystoreProperties['storePassword']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes.release.signingConfig = signingConfigs.release
|
2019-07-09 19:22:24 +02:00
|
|
|
buildTypes.debug.signingConfig = signingConfigs.release
|
2019-06-03 20:51:58 +02:00
|
|
|
}
|
2018-11-08 04:04:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
gradle.projectsEvaluated {
|
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
options.compilerArgs.add('-Xbootclasspath/p:app/libs/android.jar:app/libs/libcore.jar')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-11 15:25:36 +02:00
|
|
|
// http://www.31mins.com/android-studio-build-system-application/
|
2019-06-03 17:23:09 +02:00
|
|
|
preBuild.doLast {
|
|
|
|
def imlFile = file(project.name + ".iml")
|
2018-11-08 04:04:37 +01:00
|
|
|
|
2019-06-03 17:23:09 +02:00
|
|
|
try {
|
|
|
|
def parsedXml = (new XmlParser()).parse(imlFile)
|
|
|
|
def jdkNode = parsedXml.component[1].orderEntry.find { it.'@type' == 'jdk' }
|
|
|
|
parsedXml.component[1].remove(jdkNode)
|
2018-11-08 04:04:37 +01:00
|
|
|
|
2019-06-03 17:23:09 +02:00
|
|
|
def sdkString = "Android API " + android.compileSdkVersion.substring("android-".length()) + " Platform"
|
|
|
|
new Node(parsedXml.component[1], 'orderEntry', ['type': 'jdk', 'jdkName': sdkString, 'jdkType': 'Android SDK'])
|
|
|
|
XmlUtil.serialize(parsedXml, new FileOutputStream(imlFile))
|
2018-11-08 04:04:37 +01:00
|
|
|
|
2019-06-03 17:23:09 +02:00
|
|
|
} catch (NullPointerException | FileNotFoundException ex) {
|
|
|
|
ex.printStackTrace()
|
2018-11-08 04:04:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-09 19:22:24 +02:00
|
|
|
// To produce these binaries, in latest AOSP source tree, run
|
|
|
|
// $ make
|
|
|
|
def aospDeps = fileTree(include: [
|
|
|
|
// out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/classes.jar
|
|
|
|
'android.jar',
|
|
|
|
// out/target/common/obj/JAVA_LIBRARIES/core-libart_intermediates/classes.jar
|
|
|
|
'libcore.jar'
|
|
|
|
], dir: 'libs')
|
|
|
|
|
2018-11-08 04:04:37 +01:00
|
|
|
dependencies {
|
2019-07-09 19:22:24 +02:00
|
|
|
compileOnly aospDeps
|
2018-11-08 04:04:37 +01:00
|
|
|
|
2019-07-03 19:44:37 +02:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
|
2019-07-03 12:44:12 +02:00
|
|
|
implementation 'commons-io:commons-io:2.6'
|
2019-07-05 12:35:45 +02:00
|
|
|
implementation 'io.github.novacrypto:BIP39:2019.01.27'
|
2019-06-07 19:09:55 +02:00
|
|
|
|
2019-09-11 20:26:10 +02:00
|
|
|
implementation 'androidx.core:core-ktx:1.1.0'
|
|
|
|
implementation 'androidx.preference:preference-ktx:1.1.0'
|
2019-07-05 12:35:45 +02:00
|
|
|
implementation 'com.google.android.material:material:1.0.0'
|
2019-09-11 20:26:10 +02:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
|
2019-07-05 12:35:45 +02:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
2019-07-09 19:22:24 +02:00
|
|
|
|
|
|
|
lintChecks 'com.github.thirdegg:lint-rules:0.0.4-alpha'
|
|
|
|
|
|
|
|
testImplementation aospDeps
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.0'
|
|
|
|
testImplementation 'io.mockk:mockk:1.9.3'
|
|
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.0'
|
2019-08-06 08:16:37 +02:00
|
|
|
|
|
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
|
|
androidTestImplementation 'androidx.test:rules:1.2.0'
|
2018-11-08 04:04:37 +01:00
|
|
|
}
|