Home | History | Annotate | Download | only in dependencies
      1 //
      2 // A basic Android application that follows all the conventions
      3 //
      4 buildscript {
      5     repositories {
      6         maven { url '../../repo' }
      7     }
      8     dependencies {
      9         classpath 'com.android.build:gradle-android:0.1-SNAPSHOT'
     10     }
     11 }
     12 apply plugin: 'android'
     13 
     14 version='1.0'
     15 
     16 repositories {
     17     mavenCentral()
     18 }
     19 
     20 dependencies {
     21     compile 'com.google.guava:guava:11.0.2'
     22 }
     23 
     24 android {
     25     target = "android-15"
     26 
     27 	defaultConfig {
     28 		signingStoreLocation = "debug.keystore"
     29 		signingStorePassword = "android"
     30 		signingKeyAlias = "androiddebugkey"
     31 		signingKeyPassword = "android"
     32 	}
     33 
     34 	buildTypes {
     35 		blah {
     36 			packageNameSuffix = ".blah"
     37 		}
     38 	}
     39 }