Skip to content

Use https maven url #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,8 @@
1. 支持 null safe

## 0.2.11
1. 去除v4包
1. 去除v4包

## 0.2.11+1
1. Android中maven使用https
2. 适配Android 12
8 changes: 4 additions & 4 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ buildscript {
google()
jcenter()
maven {
url "http://mvn.gt.getui.com/nexus/content/repositories/releases/"
url "https://mvn.getui.com/nexus/content/repositories/releases/"
}
maven {url 'http://developer.huawei.com/repo/'}
maven {url 'https://developer.huawei.com/repo/'}
}

dependencies {
Expand All @@ -19,9 +19,9 @@ rootProject.allprojects {
repositories {
//Maven URL地址
maven {
url "http://mvn.gt.getui.com/nexus/content/repositories/releases/"
url "https://mvn.getui.com/nexus/content/repositories/releases/"
}
maven {url 'http://developer.huawei.com/repo/'}
maven {url 'https://developer.huawei.com/repo/'}
jcenter()
google()
}
Expand Down
1 change: 1 addition & 0 deletions android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<!-- 用户自定义服务继承自GTIntentService,作为SDK与APP桥梁服务,用来接收各种消息和命令回复 -->
<service
android:name="com.getui.getuiflut.FlutterIntentService"
android:exported="false"
android:permission="android.permission.BIND_JOB_SERVICE" />
<!-- 配置SDK核心服务 -->
<service
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: getuiflut
description: getui flutter plugin
version: 0.2.11
version: 0.2.11+1
homepage: https://www.getui.com

environment:
Expand Down