aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2018-04-07 14:41:28 -0400
committerGitHub <noreply@github.com>2018-04-07 14:41:28 -0400
commit6943976bf150c723cd55cbfb145257ce14471f91 (patch)
treeffc05cb1385e66daed29c728f417b74e0f091ea1 /build.gradle
parent7c1671f34328c509cf9850331225f8e4705e4abf (diff)
downloadfrost-6943976bf150c723cd55cbfb145257ce14471f91.tar.gz
frost-6943976bf150c723cd55cbfb145257ce14471f91.tar.bz2
frost-6943976bf150c723cd55cbfb145257ce14471f91.zip
Fix useragent update (#845)
* Test windows user agent * Update dependencies * Update KAU * Switch back user agent and use android base * Fix lint issues * Fix lint part 2 * Test messenger user agent * Update bugsnag release levels
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle16
1 files changed, 6 insertions, 10 deletions
diff --git a/build.gradle b/build.gradle
index c004c8ae..2db1fb74 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,25 +1,21 @@
-// Top-level build file where you can add configuration options common to all sub-projects/modules.
-
buildscript {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
- maven { url 'https://maven.fabric.io/public' }
+ maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "ca.allanwang:kau:${KAU}"
- classpath 'com.android.tools.build:gradle:3.0.1'
+ classpath 'com.android.tools.build:gradle:3.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${KOTLIN}"
classpath "com.bugsnag:bugsnag-android-gradle-plugin:${BUGSNAG_PLUGIN}"
- classpath 'com.github.triplet.gradle:play-publisher:1.2.0'
- classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.2'
- }
-
- wrapper {
- distributionType = "all"
+ classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:${DEX_PLUGIN}"
+ classpath "gradle.plugin.com.gladed.gradle.androidgitversion:gradle-android-git-version:${GIT_PLUGIN}"
}
+
+ wrapper.setDistributionType(Wrapper.DistributionType.ALL)
}
apply plugin: 'ca.allanwang.kau'