mirror of
https://github.com/selfxyz/self.git
synced 2026-04-27 03:01:15 -04:00
* add expo 52 * fix ios build * update RN to 0.77.0 * fix 16kb alignment of libjnidispatch.so * update coderabbit comments * fix expo notifications * fix ci * update lock * silence gitleaks * reinstall updates --------- Co-authored-by: Justin Hernandez <justin.hernandez@self.xyz>
19 lines
1011 B
Groovy
19 lines
1011 B
Groovy
pluginManagement { includeBuild("../../node_modules/@react-native/gradle-plugin") }
|
|
plugins { id("com.facebook.react.settings") }
|
|
extensions.configure(com.facebook.react.ReactSettingsExtension){ ex ->
|
|
ex.autolinkLibrariesFromCommand(['yarn','exec','react-native','config'])
|
|
}
|
|
rootProject.name = 'OpenPassport'
|
|
|
|
apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle");
|
|
useExpoModules()
|
|
|
|
include ':app'
|
|
includeBuild('../../node_modules/@react-native/gradle-plugin')
|
|
include ':react-native-passport-reader'
|
|
project(':react-native-passport-reader').projectDir = new File(rootProject.projectDir, './react-native-passport-reader/android')
|
|
include ':passportreader'
|
|
project(':passportreader').projectDir = new File(rootProject.projectDir, './android-passport-nfc-reader/app')
|
|
include ':mobile-sdk-alpha'
|
|
project(':mobile-sdk-alpha').projectDir = new File(rootProject.projectDir, '../../packages/mobile-sdk-alpha/android')
|