39 lines
1.3 KiB
Groovy
Executable File
39 lines
1.3 KiB
Groovy
Executable File
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
namespace "com.hyperling.apps.games"
|
|
compileSdkVersion 36
|
|
defaultConfig {
|
|
applicationId "apps.hyperling.com.platformer"
|
|
minSdkVersion 14
|
|
targetSdkVersion 36
|
|
versionCode 12
|
|
versionName "0.0.11"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
/*
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
compile 'com.android.support:appcompat-v7:24.2.1'
|
|
testCompile 'junit:junit:4.12'
|
|
*/
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
// https://mvnrepository.com/artifact/com.android.support/appcompat-v7
|
|
implementation group: 'com.android.support', name: 'appcompat-v7', version: '28.0.0'
|
|
}
|