Add Gradle build files.

This commit is contained in:
player-03
2016-05-25 05:47:06 -04:00
committed by Joshua Granick
parent 493f63f1a0
commit 3fa3440aeb
4 changed files with 62 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion ::ANDROID_TARGET_SDK_VERSION::
defaultConfig {
applicationId "com.player03.studiotest"
minSdkVersion ::ANDROID_MINIMUM_SDK_VERSION::
targetSdkVersion ::ANDROID_TARGET_SDK_VERSION::
versionCode ::META_BUILD_NUMBER::
versionName "::META_VERSION::"
}
buildTypes {
release {
minifyEnabled false
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}