1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-11-08 20:12:39 +01:00
Frost-for-Facebook/build.gradle
Allan Wang d36dfe98a5 Feature/bugsnag (#807)
* Add bugsnag

* Remove crashlytics

* Remove pro features and iab

* Make analytics opt in

* Clean settings activity

* Clean settings activity 2
2018-03-21 01:28:31 -04:00

29 lines
909 B
Groovy

// 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' }
}
dependencies {
classpath "ca.allanwang:kau:${KAU}"
classpath 'com.android.tools.build:gradle:3.0.1'
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'
}
}
apply plugin: 'ca.allanwang.kau'
task clean(type: Delete) {
delete rootProject.buildDir
}
task generateChangelogMd() {
kauChangelog.generate("$project.rootDir/app/src/main/res/xml/frost_changelog.xml")
}