diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 5582d33..3c2798c 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,111 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/android/build.gradle b/android/build.gradle index 1c60d36..179daff 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,59 +1,59 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { buildToolsVersion = "30.0.0" minSdkVersion = 26 compileSdkVersion = 30 targetSdkVersion = 30 supportLibVersion = "30.0.0" } repositories { google() jcenter() } dependencies { - classpath("com.android.tools.build:gradle:3.4.2") + classpath("com.android.tools.build:gradle:3.4.3") // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files classpath 'com.google.gms:google-services:4.2.0' // Google Services plugin } } subprojects { subproject -> afterEvaluate { project -> if (project.hasProperty("android")) { android { compileSdkVersion = 30 buildToolsVersion = "30.0.0" } } } } allprojects { repositories { mavenLocal() maven { // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm url("$rootDir/../node_modules/react-native/android") } maven { // Android JSC is installed from npm url("$rootDir/../node_modules/jsc-android/dist") } maven { url 'https://repo.sovrin.org/repository/maven-public' } google() jcenter() maven { url 'https://maven.google.com' } maven { url 'https://jitpack.io' } } }