Files
inji-wallet/android/build.gradle
abhip2565 bd90b342e0 [INJIMOB-3193]add preauth and credential offer support (#1949)
[INJIMOB-3058]temp commit2



[INJIMOB-3058]temp commit2



[INJIMOB-3058] add support for pre-auth flow by credential-offer



[INJIMOB-3187] animo working chcekpoint

Signed-off-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com>
2025-06-04 14:46:07 +05:30

48 lines
1.7 KiB
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
buildToolsVersion = "33.0.0"
minSdkVersion = 24
compileSdkVersion = 34
targetSdkVersion = 34
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
ndkVersion = "21.4.7075529"
kotlinVersion = "1.9.0"
}
repositories {
google()
jcenter()
mavenCentral()
mavenLocal()
}
dependencies {
classpath("com.android.tools.build:gradle:8.2")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.3")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
}
}
// @generated begin expo-camera-import - expo prebuild (DO NOT MODIFY) sync-f244f4f3d8bf7229102e8f992b525b8602c74770
def expoCameraMavenPath = new File(["node", "--print", "require.resolve('expo-camera/package.json')"].execute(null, rootDir).text.trim(), "../android/maven")
allprojects { repositories {
mavenLocal()
maven{url("https://oss.sonatype.org/content/repositories/snapshots/")}
maven{url("https://central.sonatype.com/repository/maven-snapshots/")}
maven { url(expoCameraMavenPath) }
mavenCentral()
maven {url("https://repo.danubetech.com/repository/maven-public/")}
configurations.all {
resolutionStrategy {
// use 0.9.0 to fix crash on Android 11
cacheChangingModulesFor 0, 'seconds'
force "com.facebook.soloader:soloader:0.9.0+"
force "com.apicatalog:titanium-json-ld:1.3.1"
}
}
}
}
// @generated end expo-camera-import