Skip to content
Merged
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
4 changes: 2 additions & 2 deletions apps/AEPSampleApp/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ buildscript {
ext {
buildToolsVersion = "29.0.3"
minSdkVersion = 21
compileSdkVersion = 29
targetSdkVersion = 29
compileSdkVersion = 31
targetSdkVersion = 31

if (System.properties['os.arch'] == "aarch64") {
// For M1 Users we need to use the NDK 24 which added support for aarch64
Expand Down
4 changes: 2 additions & 2 deletions packages/core/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ buildscript {
apply plugin: 'com.android.library'

android {
compileSdkVersion 28
compileSdkVersion 31
// buildToolsVersion "23.0.1"

defaultConfig {
minSdkVersion 16
targetSdkVersion 28
targetSdkVersion 31
versionCode 1
versionName "1.0"
}
Expand Down
14 changes: 9 additions & 5 deletions packages/core/android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.adobe.marketing.mobile.reactnative">
package="com.adobe.marketing.mobile.reactnative">

<application>
<activity android:name="com.adobe.marketing.mobile.FullscreenMessageActivity" />
<receiver android:name="com.adobe.marketing.mobile.LocalNotificationHandler" />
</application>
<activity
android:name="com.adobe.marketing.mobile.FullscreenMessageActivity"
android:exported="false" />
<receiver
android:name="com.adobe.marketing.mobile.LocalNotificationHandler"
android:exported="false" />
</application>
</manifest>

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adobe/react-native-aepcore",
"version": "1.0.0",
"version": "1.0.1",
"description": "Adobe Experience Platform support for React Native apps.",
"homepage": "https://aep-sdks.gitbook.io/docs/",
"license": "Apache-2.0",
Expand Down