Files
com.blitzwallet/android/build.gradle
T
Blake KaufmanandGitHub 3d7f35faf6 Btcmap store (#821)
* updating online listings ui

* update sms styles

* update chatGPT add credits

* fix chatGPT button style

* adding location permissions

* installing maps + location packages

* creating btc map merchange page

* created btcMap to lucid react icon mapping

* add btc map integration

* adding translations

* adding modal but WIP

* fix on error android back button
2026-05-09 18:31:42 -04:00

47 lines
1.5 KiB
Groovy

buildscript {
ext {
buildToolsVersion = "36.0.0"
minSdkVersion = 29
compileSdkVersion = 36
targetSdkVersion = 36
ndkVersion = "27.1.12297006"
kotlinVersion = "2.1.20"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
// Firebase depenedencies
classpath('com.google.gms:google-services:4.4.3')
classpath('com.google.firebase:firebase-crashlytics-gradle:3.0.3')
// google-secrets-gradle-plugin
classpath("com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1")
}
}
// allprojects {
// repositories {
// // * Your other repositories here *
// // maven {
// // name = "GitHubPackages"
// // url = uri("https://maven.pkg.github.com/blockstream/lwk")
// // credentials {
// // username = System.getenv("GITHUB_USER")
// // password = System.getenv("GITHUB_TOKEN")
// // }
// // }
// maven {
// // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
// url "$rootDir/../node_modules/react-native/android"
// }
// }
// }
apply plugin: "com.facebook.react.rootproject"
apply plugin: "expo-root-project"