-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update gradle files for 0.73 support
Current lib should just work with 0.73 but taking preliminary steps to keep up to date based on the work specified [here](react-native-community/discussions-and-proposals#671) And in particular on the revised outputs of [create-react-native-library CLI](https://github.com/callstack/react-native-builder-bob/blob/fc8744092501ba00fd11bdb69e1ecb46fbb63c0f/packages/create-react-native-library/templates/native-common/android/build.gradle) - Updated build.gradle and gradle.properties to match new CLI outputs - Added new AndroidManifest.xml without namespace - Added namespace in build.gradle only if Gradle 7.3+
- Loading branch information
Showing
9 changed files
with
166 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
AnalyticsReactNative_kotlinVersion=1.7.0 | ||
AnalyticsReactNative_compileSdkVersion=29 | ||
AnalyticsReactNative_buildToolsVersion=29.0.2 | ||
AnalyticsReactNative_targetSdkVersion=29 | ||
AnalyticsReactNative_minSdkVersion=21 | ||
AnalyticsReactNative_targetSdkVersion=31 | ||
AnalyticsReactNative_compileSdkVersion=31 | ||
AnalyticsReactNative_ndkversion=21.4.7075529 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
packages/plugins/plugin-advertising-id/android/gradle.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
AnalyticsReactNativePluginAdvertisingId_kotlinVersion=1.7.0 | ||
AnalyticsReactNativePluginAdvertisingId_compileSdkVersion=31 | ||
AnalyticsReactNativePluginAdvertisingId_minSdkVersion=21 | ||
AnalyticsReactNativePluginAdvertisingId_targetSdkVersion=31 | ||
AnalyticsReactNativePluginAdvertisingId_compileSdkVersion=31 | ||
AnalyticsReactNativePluginAdvertisingId_ndkversion=21.4.7075529 |
3 changes: 3 additions & 0 deletions
3
packages/plugins/plugin-advertising-id/android/src/main/AndroidManifestNew.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
</manifest> |
Oops, something went wrong.