This repository has been archived on 2025-01-04. You can view files and clone it, but cannot push or open issues or pull requests.

26 lines
600 B
Groovy
Raw Permalink Normal View History

2025-01-04 12:39:38 -07:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.1"
defaultConfig {
applicationId "com.hyperling.examplegame_practice"
minSdkVersion 8
targetSdkVersion 21
versionCode 5
versionName "1.04"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
}