mirror of
https://github.com/AllanWang/Frost-for-Facebook.git
synced 2024-11-10 13:02:35 +01:00
6943976bf1
* 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
30 lines
924 B
Groovy
30 lines
924 B
Groovy
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven { url "https://jitpack.io" }
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
}
|
|
|
|
dependencies {
|
|
classpath "ca.allanwang:kau:${KAU}"
|
|
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.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'
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
task generateChangelogMd() {
|
|
kauChangelog.generate("$project.rootDir/app/src/main/res/xml/frost_changelog.xml")
|
|
}
|