Add Gradle build files.
This commit is contained in:
committed by
Joshua Granick
parent
493f63f1a0
commit
3fa3440aeb
22
templates/android/template/app/build.gradle
Normal file
22
templates/android/template/app/build.gradle
Normal 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'])
|
||||
}
|
||||
Reference in New Issue
Block a user