diff options
Diffstat (limited to 'android')
-rw-r--r-- | android/app/build.gradle | 2 | ||||
-rw-r--r-- | android/app/src/main/AndroidManifest.xml | 9 | ||||
-rw-r--r-- | android/build.gradle | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/android/app/build.gradle b/android/app/build.gradle index f0782b8b2..0920a076d 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -135,7 +135,7 @@ android { compileSdkVersion rootProject.ext.compileSdkVersion defaultConfig { - applicationId "com.app" + applicationId "xyz.blueskyweb.pubsq" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index d28d40fd3..38d83125f 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -21,6 +21,15 @@ <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> + <!-- deep linking via web links --> + <intent-filter android:autoVerify="true"> + <action android:name="android.intent.action.VIEW" /> + <category android:name="android.intent.category.DEFAULT" /> + <category android:name="android.intent.category.BROWSABLE" /> + <!-- debug host: https://pubsq.pfrazee.com --> + <data android:scheme="https" /> + <data android:host="pubsq.pfrazee.com" /> + </intent-filter> </activity> </application> </manifest> diff --git a/android/build.gradle b/android/build.gradle index 5dfc68a63..e997cb0e6 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -22,7 +22,7 @@ buildscript { mavenCentral() } dependencies { - classpath("com.android.tools.build:gradle:7.0.4") + classpath('com.android.tools.build:gradle:7.2.1') classpath("com.facebook.react:react-native-gradle-plugin") classpath("de.undercouch:gradle-download-task:4.1.2") // NOTE: Do not place your application dependencies here; they belong |