Gradle: Use the main assets directory instead of the android/assets one which is only updated when doing old style builds...

This commit is contained in:
Henrik Rydgård 2017-03-31 10:56:30 +02:00
parent c1838b82f4
commit 8a7661a44f
2 changed files with 5 additions and 3 deletions

4
.gitignore vendored
View file

@ -55,9 +55,11 @@ build
build.ios
versionname.txt
versioncode.txt
build*/
# Temp file used by jenkins windows build (TODO: remove)
desc.txt
Logs
Memstick

View file

@ -1,5 +1,5 @@
plugins {
id 'com.gladed.androidgitversion' version '0.3.3'
id 'com.gladed.androidgitversion' version '0.3.4'
}
apply plugin: 'com.android.application'
@ -89,7 +89,7 @@ android {
aidl.srcDirs = ['src']
resources.srcDirs = ['src']
assets.srcDirs = [
'assets',
'../assets',
]
jni.srcDirs = ['..']
}