diff --git a/CHANGELOG.md b/CHANGELOG.md index b92de52..f7972bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.26.0 + +##### Breaking +- Updated the Android binding to use [Braze Android SDK 23.3.0](https://github.com/Appboy/appboy-android-sdk/blob/master/CHANGELOG.md#2330). + ## 1.25.0 ##### Breaking diff --git a/README.md b/README.md index 4de5371..d57dbdc 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Successful marketing automation is essential to the future of your mobile app. B - [Braze User Guide](https://www.braze.com/docs/user_guide/introduction/ "Braze User Guide") - [Braze Developer Guide](https://www.braze.com/docs/developer_guide/home/ "Braze Developer Guide") -- [Android JavaDocs](http://appboy.github.io/appboy-android-sdk/javadocs/ "Braze Android SDK Class Documentation") +- [Android Class Documentation](https://appboy.github.io/appboy-android-sdk/kdoc "Braze Android SDK Class Documentation") - [iOS Full Class Documentation](http://appboy.github.io/appboy-ios-sdk/docs/annotated.html "Braze iOS SDK Class Documentation") - [iOS Xamarin Bindings Nuget Package](https://www.nuget.org/packages/AppboyPlatformXamariniOSBinding/ "iOS Xamarin Bindings Nuget Package") - [Android Xamarin Bindings Nuget Package](https://www.nuget.org/packages/AppboyPlatform.AndroidBinding/ "Android Xamarin Bindings Nuget Package") diff --git a/appboy-component/lib/android/AppboyPlatform.AndroidBinding.dll b/appboy-component/lib/android/AppboyPlatform.AndroidBinding.dll index 88f8939..5254fba 100644 Binary files a/appboy-component/lib/android/AppboyPlatform.AndroidBinding.dll and b/appboy-component/lib/android/AppboyPlatform.AndroidBinding.dll differ diff --git a/appboy-component/lib/android/AppboyPlatform.AndroidBinding.pdb b/appboy-component/lib/android/AppboyPlatform.AndroidBinding.pdb index a970175..6826574 100644 Binary files a/appboy-component/lib/android/AppboyPlatform.AndroidBinding.pdb and b/appboy-component/lib/android/AppboyPlatform.AndroidBinding.pdb differ diff --git a/appboy-component/lib/android/AppboyPlatform.AndroidCore.dll b/appboy-component/lib/android/AppboyPlatform.AndroidCore.dll index 2456fcd..f58359d 100644 Binary files a/appboy-component/lib/android/AppboyPlatform.AndroidCore.dll and b/appboy-component/lib/android/AppboyPlatform.AndroidCore.dll differ diff --git a/appboy-component/lib/android/AppboyPlatform.AndroidCore.pdb b/appboy-component/lib/android/AppboyPlatform.AndroidCore.pdb index 08201da..643f1bb 100644 Binary files a/appboy-component/lib/android/AppboyPlatform.AndroidCore.pdb and b/appboy-component/lib/android/AppboyPlatform.AndroidCore.pdb differ diff --git a/appboy-component/nuget/AppboyPlatform.AndroidBinding.nuspec b/appboy-component/nuget/AppboyPlatform.AndroidBinding.nuspec index 62c5e91..5f5458d 100644 --- a/appboy-component/nuget/AppboyPlatform.AndroidBinding.nuspec +++ b/appboy-component/nuget/AppboyPlatform.AndroidBinding.nuspec @@ -2,7 +2,7 @@ AppboyPlatform.AndroidBinding - 1.25.0 + 1.26.0 Braze Braze https://github.com/Appboy/appboy-xamarin-bindings diff --git a/appboy-component/nuget/AppboyPlatformXamariniOSBinding.nuspec b/appboy-component/nuget/AppboyPlatformXamariniOSBinding.nuspec index 92d8632..b405258 100644 --- a/appboy-component/nuget/AppboyPlatformXamariniOSBinding.nuspec +++ b/appboy-component/nuget/AppboyPlatformXamariniOSBinding.nuspec @@ -2,7 +2,7 @@ AppboyPlatformXamariniOSBinding - 1.25.0 + 1.26.0 Braze Braze https://github.com/Appboy/appboy-xamarin-bindings diff --git a/appboy-component/samples/android/TestApp.XamarinAndroid/MainApplication.cs b/appboy-component/samples/android/TestApp.XamarinAndroid/MainApplication.cs index 5862144..124484b 100644 --- a/appboy-component/samples/android/TestApp.XamarinAndroid/MainApplication.cs +++ b/appboy-component/samples/android/TestApp.XamarinAndroid/MainApplication.cs @@ -28,11 +28,11 @@ public override void OnCreate() void RegisterFirebasePush() { try { var token = FirebaseInstanceId.Instance.GetToken("901477453852", "FCM"); - Braze.GetInstance(this).RegisterAppboyPushMessages (token); + Braze.GetInstance(this).RegisteredPushToken = token; Console.WriteLine("Registered Firebase push token with Braze: " + token); } catch (Exception e) { Console.WriteLine("Caught exception registering for Firebase push: " + e); } } } -} \ No newline at end of file +} diff --git a/appboy-component/src/android-core/AppboyPlatform.AndroidCore/AppboyPlatform.AndroidCore.csproj b/appboy-component/src/android-core/AppboyPlatform.AndroidCore/AppboyPlatform.AndroidCore.csproj index 3fddcfd..24e2dba 100644 --- a/appboy-component/src/android-core/AppboyPlatform.AndroidCore/AppboyPlatform.AndroidCore.csproj +++ b/appboy-component/src/android-core/AppboyPlatform.AndroidCore/AppboyPlatform.AndroidCore.csproj @@ -79,7 +79,7 @@ - + diff --git a/appboy-component/src/android-core/AppboyPlatform.AndroidCore/Jars/android-sdk-base-23.3.0.aar b/appboy-component/src/android-core/AppboyPlatform.AndroidCore/Jars/android-sdk-base-23.3.0.aar new file mode 100644 index 0000000..f95ffa1 Binary files /dev/null and b/appboy-component/src/android-core/AppboyPlatform.AndroidCore/Jars/android-sdk-base-23.3.0.aar differ diff --git a/appboy-component/src/android/AppboyPlatform.XamarinAndroidBinding.csproj b/appboy-component/src/android/AppboyPlatform.XamarinAndroidBinding.csproj index 5618b09..f1fb05b 100644 --- a/appboy-component/src/android/AppboyPlatform.XamarinAndroidBinding.csproj +++ b/appboy-component/src/android/AppboyPlatform.XamarinAndroidBinding.csproj @@ -253,7 +253,7 @@ - + diff --git a/appboy-component/src/android/Jars/android-sdk-ui-23.3.0.aar b/appboy-component/src/android/Jars/android-sdk-ui-23.3.0.aar new file mode 100644 index 0000000..fe7feef Binary files /dev/null and b/appboy-component/src/android/Jars/android-sdk-ui-23.3.0.aar differ diff --git a/appboy-component/src/android/Transforms/Metadata.xml b/appboy-component/src/android/Transforms/Metadata.xml index 948dd69..e611105 100644 --- a/appboy-component/src/android/Transforms/Metadata.xml +++ b/appboy-component/src/android/Transforms/Metadata.xml @@ -9,4 +9,5 @@ +