Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
更新 0.0.1.2X
Browse files Browse the repository at this point in the history
  • Loading branch information
snpmyn committed Jan 14, 2021
1 parent 17ce716 commit a8af22a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 13 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
|:-:|:-:|
| 示例app | implementation project(path: ':jpush') |
| 示例app | implementation project(path: ':janalytics') |
| 一方库Jpush | api 'com.github.snpmyn.Util:utilone:v0.1.2'(避重)|
| 一方库Jpush | api 'com.github.snpmyn.Util:utilone:v0.0.1.2X'(避重)|
| 一方库Jpush | implementation 'cn.jiguang.sdk:jcore:2.6.0' |
| 一方库Jpush | api 'cn.jiguang.sdk:jpush:3.9.0'(避重)|
| 一方库Janalytics | implementation 'com.github.snpmyn.Util:utilone:v0.1.2' |
| 一方库Janalytics | implementation 'com.github.snpmyn.Util:utilone:v0.0.1.2X' |
| 一方库Janalytics | implementation 'cn.jiguang.sdk:jcore:2.6.0' |
| 一方库Janalytics | api 'cn.jiguang.sdk:janalytics:2.1.2'(避重)|
| 二方库Util-示例app | implementation project(path: ':utilone') |
Expand Down Expand Up @@ -101,7 +101,7 @@ build.gradle(app)
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
compileSdkVersion 30
defaultConfig {
...
ndk {
Expand All @@ -116,17 +116,17 @@ android {
]
}
compileOptions {
sourceCompatibility rootProject.ext.compileOptions["sourceCompatibility"]
targetCompatibility rootProject.ext.compileOptions["targetCompatibility"]
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
}
dependencies {
implementation 'com.github.snpmyn.Push:jpush:v0.0.1.1X'
implementation 'com.github.snpmyn.Push:janalytics:v0.0.1.1X'
implementation 'com.github.snpmyn.Push:jpush:v0.0.1.2X'
implementation 'com.github.snpmyn.Push:janalytics:v0.0.1.2X'
}
```

Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ currently being supported with security updates.

| Version | Supported |
|:-------:|:-----------------:|
| v1.0.2 | :x: |
| v1.0.1 | :white_check_mark: |
| v0.0.1.3X | :x: |
| v0.0.1.2X | :white_check_mark: |

## Reporting a Vulnerability

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="@color/background"
android:fillColor="@color/white"
android:pathData="M20,11H7.83l5.59,-5.59L12,4l-8,8 8,8 1.41,-1.41L7.83,13H20v-2z" />
</vector>
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_jpush_display.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/notification"
android:textColor="@color/background"
android:textColor="@color/white"
android:textSize="@dimen/sp_16" />
</com.google.android.material.appbar.MaterialToolbar>
</RelativeLayout>
1 change: 1 addition & 0 deletions app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
<color name="colorAccent">#D81B60</color>
<color name="fontHint">#B9B9B9</color>
<color name="fontInput">#585858</color>
<color name="white">#fff</color>
</resources>
2 changes: 1 addition & 1 deletion janalytics/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {

implementation 'androidx.appcompat:appcompat:1.2.0'
/*自带*/
implementation 'com.github.snpmyn.Util:utilone:v0.0.1.1X'
implementation 'com.github.snpmyn.Util:utilone:v0.0.1.2X'
/*util*/
implementation 'cn.jiguang.sdk:jcore:2.6.0'
/*JCore*/
Expand Down
2 changes: 1 addition & 1 deletion jpush/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies {

implementation 'androidx.appcompat:appcompat:1.2.0'
/*自带*/
api 'com.github.snpmyn.Util:utilone:v0.0.1.1X'
api 'com.github.snpmyn.Util:utilone:v0.0.1.2X'
/*util*/
implementation 'cn.jiguang.sdk:jcore:2.6.0'
/*JCore*/
Expand Down

0 comments on commit a8af22a

Please sign in to comment.