Skip to content

Commit

Permalink
feat: add suport to RN 0.73
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Geron committed Aug 24, 2023
1 parent c01793f commit 2ec2243
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ def pkgData = new JsonSlurper().parseText(rootPkg.text)
def sdk_version = pkgData.version

android {
namespace = "com.amazonaws.ivs.reactnative.player"
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
buildToolsVersion getExtOrDefault('buildToolsVersion')
defaultConfig {
minSdkVersion 21
minSdkVersion 26
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
versionCode 1
versionName sdk_version
Expand Down
3 changes: 1 addition & 2 deletions android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.amazonaws.ivs.reactnative.player">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >
<application>
<meta-data
android:name="com.amazonaws.ivs.player.FRAMEWORK_NAME"
Expand Down
2 changes: 1 addition & 1 deletion example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
buildscript {
ext {
buildToolsVersion = "31.0.0"
minSdkVersion = 21
minSdkVersion = 26
compileSdkVersion = 31
targetSdkVersion = 31
kotlin_version = '1.6.0'
Expand Down

0 comments on commit 2ec2243

Please sign in to comment.