mirror of
https://github.com/Aviortheking/Hangman.git
synced 2024-12-19 18:20:54 +00:00
36 lines
1.2 KiB
Groovy
36 lines
1.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
android {
|
|
compileSdkVersion 26
|
|
buildToolsVersion "26.0.1"
|
|
defaultConfig {
|
|
applicationId "net.DeltaWings.Android.Pendu"
|
|
minSdkVersion 15
|
|
targetSdkVersion 26
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
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:26.1.0'
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
compile 'com.android.support:design:26.1.0'
|
|
compile 'com.android.support:support-vector-drawable:26.1.0'
|
|
compile 'com.google.android.gms:play-services-ads:11.0.4'
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
|
|
repositories {
|
|
maven { url 'https://maven.google.com' }
|
|
} |