2018-11-12 23:31:04 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
2019-01-17 21:13:46 +01:00
|
|
|
applicationId "org.emulator.forty.eight"
|
2019-03-09 00:07:10 +01:00
|
|
|
minSdkVersion 19
|
2018-11-12 23:31:04 +01:00
|
|
|
targetSdkVersion 28
|
2019-03-14 08:32:43 +01:00
|
|
|
versionCode 4
|
|
|
|
versionName "1.3"
|
2018-12-07 23:57:35 +01:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-11-12 23:31:04 +01:00
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
2019-01-02 00:08:17 +01:00
|
|
|
//abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64'
|
2019-01-02 22:04:53 +01:00
|
|
|
//abiFilters 'x86_64'
|
2019-02-10 23:56:04 +01:00
|
|
|
version "3.10.2"
|
2018-11-12 23:31:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
path "CMakeLists.txt"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2019-03-09 00:07:10 +01:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-alpha02'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
|
|
|
|
implementation 'com.google.android.material:material:1.1.0-alpha04'
|
2018-12-20 00:12:25 +01:00
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
2019-03-08 01:55:50 +01:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2019-03-09 00:07:10 +01:00
|
|
|
androidTestImplementation 'androidx.test:runner:1.1.2-alpha01'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.2-alpha01'
|
2018-11-12 23:31:04 +01:00
|
|
|
}
|