1 Star 0 Fork 0

xiaojigugu/libadblockplus-android

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
Boris Papevis 提交于 2020-07-03 01:56 +08:00 . Issue DP-1306 - Release 3.22. Bump versions.
apply plugin: 'com.android.application'
apply plugin: 'de.undercouch.download'
apply plugin: 'kotlin-android'
// using download file task plugin more info at https://github.com/michel-kraemer/gradle-download-task
task downloadSubscriptionLists(type: Download) {
src([
'https://easylist-downloads.adblockplus.org/exceptionrules.txt',
'https://easylist-downloads.adblockplus.org/easylist.txt'
])
dest "./src/main/res/raw/"
overwrite true
}
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "org.adblockplus.libadblockplus.android.webviewapp"
minSdkVersion 21
targetSdkVersion 28
versionCode 40
versionName = rootProject.ext.moduleVersion
missingDimensionStrategy 'abi', 'abi_all', 'abi_arm', 'abi_arm64', 'abi_x86'
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
sourceSets {
test.java.srcDirs += 'src/test/kotlin'
androidTest.java.srcDirs += 'src/androidTest/kotlin'
}
}
dependencies {
implementation project(':adblock-android-settings')
implementation project(':adblock-android-webview')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation "com.android.support:design:28.0.0"
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/giteeguguji/libadblockplus-android.git
git@gitee.com:giteeguguji/libadblockplus-android.git
giteeguguji
libadblockplus-android
libadblockplus-android
master

搜索帮助