mirror of
https://github.com/Aviortheking/Hangman.git
synced 2024-12-19 18:20:54 +00:00
32 lines
1.0 KiB
Groovy
32 lines
1.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion "27.0.3"
|
|
defaultConfig {
|
|
applicationId "net.DeltaWings.Android.Hangman"
|
|
minSdkVersion 21
|
|
targetSdkVersion 27
|
|
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 {
|
|
implementation 'com.android.support:support-v4:27.0.2'
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
compile 'com.android.support:appcompat-v7:27.0.2'
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
compile 'com.android.support:design:27.0.2'
|
|
compile 'com.android.support:support-vector-drawable:27.0.2'
|
|
}
|
|
|
|
repositories {
|
|
maven { url 'https://maven.google.com' }
|
|
} |