Skip to content

Commit

Permalink
最后修一次
Browse files Browse the repository at this point in the history
  • Loading branch information
iris1598 committed Aug 30, 2024
1 parent 8b18509 commit fecc954
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/prbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
- name: Flutter action
uses: subosito/flutter-action@v2
with:
Expand Down
33 changes: 29 additions & 4 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
buildscript {
ext.kotlin_version = '1.7.10'
repositories {
google()
mavenCentral()
//google()
//mavenCentral()
maven {
allowInsecureProtocol = true
url 'https://maven.aliyun.com/repository/google'
}
maven {
allowInsecureProtocol = true
url 'https://maven.aliyun.com/repository/jcenter'
}
maven {
allowInsecureProtocol = true
url 'http://maven.aliyun.com/nexus/content/groups/public'
}

}

dependencies {
Expand All @@ -13,8 +26,20 @@ buildscript {

allprojects {
repositories {
google()
mavenCentral()
//google()
//mavenCentral()
maven {
allowInsecureProtocol = true
url 'https://maven.aliyun.com/repository/google'
}
maven {
allowInsecureProtocol = true
url 'https://maven.aliyun.com/repository/jcenter'
}
maven {
allowInsecureProtocol = true
url 'http://maven.aliyun.com/nexus/content/groups/public'
}
}
}

Expand Down

0 comments on commit fecc954

Please sign in to comment.