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