aboutsummaryrefslogtreecommitdiffstats
path: root/samples/gradle-sample/ExampleApplication/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'samples/gradle-sample/ExampleApplication/app/build.gradle')
-rw-r--r--samples/gradle-sample/ExampleApplication/app/build.gradle29
1 files changed, 29 insertions, 0 deletions
diff --git a/samples/gradle-sample/ExampleApplication/app/build.gradle b/samples/gradle-sample/ExampleApplication/app/build.gradle
new file mode 100644
index 0000000..89e2b5f
--- /dev/null
+++ b/samples/gradle-sample/ExampleApplication/app/build.gradle
@@ -0,0 +1,29 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 22
+ buildToolsVersion "19.1.0"
+
+ defaultConfig {
+ applicationId "com.example.test.myapplication"
+ minSdkVersion 15
+ targetSdkVersion 22
+ versionCode 1
+ versionName "1.0"
+ }
+ 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:22.+'
+}
+
+dependencies {
+ compile 'org.cyanogenmod:platform.sdk:2.0-SNAPSHOT'
+}