You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
454 B
19 lines
454 B
buildscript { |
|
repositories { |
|
mavenCentral() |
|
} |
|
dependencies { |
|
classpath 'com.android.tools.build:gradle:1.3.1' |
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3' |
|
} |
|
} |
|
apply plugin: 'com.android.library' |
|
apply plugin: 'com.github.dcendents.android-maven' |
|
|
|
android { |
|
compileSdkVersion 22 |
|
buildToolsVersion "22.0.1" |
|
compileOptions { |
|
sourceCompatibility JavaVersion.VERSION_1_6 |
|
} |
|
}
|
|
|