2018-11-12 23:31:04 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.regis.cosnier.emu48"
|
2018-12-10 23:22:22 +01:00
|
|
|
minSdkVersion 19
|
2018-11-12 23:31:04 +01:00
|
|
|
targetSdkVersion 28
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
2018-12-07 23:57:35 +01:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-11-12 23:31:04 +01:00
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
cppFlags ""
|
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'
|
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'])
|
2018-12-07 23:57:35 +01:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-alpha01'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
|
|
|
|
implementation 'com.google.android.material:material:1.1.0-alpha01'
|
2018-12-20 00:12:25 +01:00
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
2018-11-12 23:31:04 +01:00
|
|
|
}
|