1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-09-19 15:11:42 +02:00
Frost-for-Facebook/build.gradle
Allan Wang da63f00eb5
Fix/duplicate back (#1177)
* Merge potential fix for text zoom

* Actually fix the duplicate back

* Prepare fixing dependent notifications

* Add notification fallback url

* Add back acontext to url, fixes #1137
2018-11-06 22:35:58 -05:00

34 lines
1.0 KiB
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.2.1'
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")
}
task fullRelease(type: GradleBuild) {
tasks = ['clean', 'lintRelease', 'test', 'assembleRelease']
}