* testing webview * adding webview code * fixing on-chain payment from using endpoitn before confirmations * fixed color bug * fixing sats text * fix eslint * remove uneeded flatlist * fixing accounts swaps * fixing tabs rerender issue * fixing missing props * removed prop drilling * add swap state to android * fixed double run bug * fixed tokens confirm balance + added infinity symbol if token doesnt have max supply * adding auth to encription * only run on-chain restore once a minute * remove debugging * commenting webview for later use
44 lines
1.3 KiB
Groovy
44 lines
1.3 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')
|
|
}
|
|
}
|
|
// 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"
|