mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
Fix a few things
This commit is contained in:
parent
047bd3cc8e
commit
8ef8a68a86
2 changed files with 6 additions and 8 deletions
12
build.gradle
12
build.gradle
|
@ -13,7 +13,7 @@ buildscript {
|
|||
}
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:2.3.0'
|
||||
classpath 'com.android.tools.build:gradle:2.3.1'
|
||||
classpath 'com.google.gms:google-services:3.0.0'
|
||||
}
|
||||
}
|
||||
|
@ -37,14 +37,12 @@ ext {
|
|||
preDexEnabled = "true".equals(System.getProperty("pre-dex", "true"))
|
||||
}
|
||||
|
||||
configurations.all {
|
||||
// Check for updates every build
|
||||
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
|
||||
}
|
||||
|
||||
repositories {
|
||||
jcenter()
|
||||
maven { url "https://jitpack.io" }
|
||||
maven {
|
||||
url 'https://oss.sonatype.org/content/repositories/snapshots/'
|
||||
}
|
||||
|
||||
flatDir {
|
||||
dirs 'libs'
|
||||
|
@ -103,7 +101,7 @@ android {
|
|||
// see http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Configuring-the-Structure
|
||||
|
||||
dexOptions {
|
||||
// Skip pre-dexing when running on Travis CI or when disabled via -Dpre-dex=false.
|
||||
// Skip pre-dexing whe`n running on Travis CI or when disabled via -Dpre-dex=false.
|
||||
preDexLibraries = preDexEnabled && !travisBuild
|
||||
}
|
||||
|
||||
|
|
|
@ -123,7 +123,7 @@
|
|||
<bool name="use_home">false</bool>
|
||||
|
||||
<!-- Push server url -->
|
||||
<string name="push_server_url" translatable="true"></string>
|
||||
<string name="push_server_url" translatable="false"></string>
|
||||
</resources>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue