Moving to Android Studio and Gradle.

This commit is contained in:
2014-12-02 18:55:57 +04:00
parent 6f4d9f2b4d
commit 6c59f740f0
79 changed files with 404 additions and 146 deletions

23
app/build.gradle Normal file
View File

@@ -0,0 +1,23 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 10
buildToolsVersion "21.1.1"
defaultConfig {
applicationId "org.dyndns.vahagn.sokoban"
minSdkVersion 10
targetSdkVersion 14
}
buildTypes {
release {
runProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:18.0.0'
}