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 ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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-11-25 23:44:31 +01:00
|
|
|
// testImplementation 'junit:junit:4.12'
|
|
|
|
// androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
|
|
// androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
2018-11-12 23:31:04 +01:00
|
|
|
}
|