Added AppMsg library to the librarys-folder

This commit is contained in:
Daniel Haß
2014-02-20 22:53:47 +01:00
parent 4839172f5b
commit 15757a2a32
11 changed files with 1430 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
apply plugin: 'android-library'
android {
compileSdkVersion 19
buildToolsVersion '19.0.1'
defaultConfig {
minSdkVersion 4
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
res.srcDirs = ['res']
}
}
}
if (project.hasProperty('nexusUsername')) {
// Used to push in maven
apply from: '../maven_push.gradle'
}