Fixed messed up ApkLib structure

This commit is contained in:
Jamie McDonald 2014-03-17 18:25:16 +01:00
parent 47a887b546
commit 0fc1ff9166
2 changed files with 5 additions and 7 deletions

View File

@ -9,7 +9,7 @@ buildscript {
allprojects {
group = 'com.soundcloud.android'
version = '0.9.0'
version = '0.9.2'
repositories {
mavenCentral()

View File

@ -26,17 +26,15 @@ dependencies {
}
task apklib(type: Zip) {
dependsOn 'packageReleaseJar'
destinationDir = file('build/libs')
appendix = 'apklib'
extension = 'apklib'
appendix = extension = 'apklib'
from 'AndroidManifest.xml'
from 'src/main/AndroidManifest.xml'
into('res') {
from 'res'
from 'src/main/res'
}
into('src') {
from 'src'
from 'src/main/java'
}
}