Skip to content

Commit 78fdccf

Browse files
authored
Merge pull request #174 from channel-io/develop
0.11.12
2 parents f39a8c7 + 5b3064d commit 78fdccf

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.11.12
2+
3+
## Update
4+
* Android - Support Gradle 8.0 and above
5+
16
# 0.11.11
27

38
## Update

android/build.gradle

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,29 @@ def computeVersionName() {
99

1010
buildscript {
1111
repositories {
12-
jcenter()
13-
maven {
14-
url 'https://maven.google.com/'
15-
name 'Google'
16-
}
12+
google()
13+
mavenCentral()
1714
}
1815

1916
dependencies {
20-
classpath 'com.android.tools.build:gradle:3.2.0'
17+
classpath 'com.android.tools.build:gradle:7.4.2'
2118
}
2219
}
2320

2421
apply plugin: 'com.android.library'
2522

2623
android {
24+
namespace 'com.zoyi.channel.rn'
25+
compileSdk 34
26+
2727
defaultConfig {
28-
compileSdk 34
2928
minSdkVersion 23
3029
targetSdkVersion 34
3130
versionCode 1
3231
// get version name from package.json version
3332
versionName computeVersionName()
3433
}
35-
lintOptions {
34+
lint {
3635
abortOnError false
3736
}
3837
packagingOptions {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-channel-plugin",
3-
"version": "0.11.11",
3+
"version": "0.11.12",
44
"description": "react native module for channel io",
55
"main": "index.ts",
66
"scripts": {

0 commit comments

Comments
 (0)