Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ android {

defaultConfig {
applicationId "org.proxydroid"
minSdk 21
targetSdk 33
minSdk 24
targetSdk 35
versionCode 74
versionName "3.4.0"

Expand Down
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@
buildscript {
ext.kotlin_version = '1.9.10'
repositories {
// Use Google's China mirror so the build works from networks where
// dl.google.com is unreachable. The mirror serves the same artifacts.
maven { url 'https://dl.google.cn/dl/android/maven2/' }
google()
maven { url 'https://maven.aliyun.com/repository/central' }
mavenCentral()
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
gradlePluginPortal()
}
dependencies {
Expand All @@ -19,7 +24,9 @@ buildscript {

allprojects {
repositories {
maven { url 'https://dl.google.cn/dl/android/maven2/' }
google()
maven { url 'https://maven.aliyun.com/repository/central' }
mavenCentral()
}
}
Expand Down
Loading