Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
WaaS SDK 1.0.4 (#45)
Browse files Browse the repository at this point in the history
WaaS SDK 1.0.4
- Fix Android release builds
- Update go-internal-sdk and WaasSdkGo
  • Loading branch information
yuga-cb authored Jul 13, 2023
1 parent 33778e3 commit 6aa53ab
Show file tree
Hide file tree
Showing 18 changed files with 429 additions and 423 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ yarn-error.log
buck-out/
\.buckd/
android/app/libs
android/libs
android/keystores/debug.keystore

# Expo
Expand All @@ -80,4 +79,5 @@ ios/WaasSdkGo.xcframework/ios-x86_64-simulator/WaasSdkGo.framework
ios/openssl_libcrypto.xcframework

# Android built-frameworks
android/libs/go-internal*.aar
android/go-internal-sdk/*.aar
android/mpc-sdk/*.aar
3 changes: 3 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ dependencies {
implementation 'com.google.code.gson:gson:2.8.7'
implementation fileTree(dir: "libs", include: ["*.jar","*.aar"])
implementation "com.facebook.react:react-native"

implementation project(':go-internal-sdk')
implementation project(':mpc-sdk')
}

if (isNewArchitectureEnabled()) {
Expand Down
2 changes: 2 additions & 0 deletions android/go-internal-sdk/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
configurations.maybeCreate("default")
artifacts.add("default", file('go-internal-sdk-0.1.1.aar'))
Binary file not shown.
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ WaasSdkReactNative_minSdkVersion=21
WaasSdkReactNative_targetSdkVersion=31
WaasSdkReactNative_compileSdkVersion=31
WaasSdkReactNative_ndkversion=21.4.7075529
WaasSdkReactNative_goInternalSdkVersion=0.0.9
WaasSdkReactNative_goInternalSdkVersion=0.1.1
WaasSdkReactNative_mpcSdkVersion=0.0.2
2 changes: 2 additions & 0 deletions android/mpc-sdk/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
configurations.maybeCreate("default")
artifacts.add("default", file('mpc-sdk-0.0.2.aar'))
File renamed without changes.
5 changes: 5 additions & 0 deletions android/settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include(":go-internal-sdk")
project(':go-internal-sdk').projectDir = new File(settingsDir, 'go-internal-sdk')

include(":mpc-sdk")
project(':mpc-sdk').projectDir = new File(settingsDir, 'mpc-sdk')
Loading

0 comments on commit 6aa53ab

Please sign in to comment.