create different push.xml resoucres for quicksy and conversations

This commit is contained in:
Daniel Gultsch 2018-11-03 16:14:30 +01:00
parent 4688d68ea1
commit 4a35c3c7cf
2 changed files with 15 additions and 1 deletions

4
.gitignore vendored
View file

@ -2,7 +2,9 @@
*.swp
.settings
src/playstore/res/values/push.xml
src/conversationsPlaystore/res/values/push.xml
src/quicksyPlaystore/res/values/push.xml
# https://github.com/github/gitignore/blob/master/Gradle.gitignore
.gradle/

View file

@ -144,6 +144,12 @@ android {
}
res {
srcDir 'src/playstoreCompat/res'
srcDir 'src/quicksyPlaystore/res'
}
}
quicksyPlaystoreSystem {
res {
srcDir 'src/quicksyPlaystore/res'
}
}
conversationsFreeCompat {
@ -157,6 +163,12 @@ android {
}
res {
srcDir 'src/playstoreCompat/res'
srcDir 'src/conversationsPlaystore/res'
}
}
conversationsPlaystoreSystem {
res {
srcDir 'src/conversationsPlaystore/res'
}
}
}