Skip to content
This repository was archived by the owner on Nov 20, 2024. It is now read-only.

Commit eda6d11

Browse files
committed
Updated Native template with proper naming and bundle id
1 parent 1082098 commit eda6d11

File tree

61 files changed

+346
-292
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+346
-292
lines changed

android/app/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ android {
8686
buildToolsVersion rootProject.ext.buildToolsVersion
8787
compileSdk rootProject.ext.compileSdkVersion
8888

89-
namespace 'com.anonymous.apprn'
89+
namespace 'com.onemdev.rnloop'
9090
defaultConfig {
91-
applicationId 'com.anonymous.apprn'
91+
applicationId 'com.onemdev.rnloop'
9292
minSdkVersion rootProject.ext.minSdkVersion
9393
targetSdkVersion rootProject.ext.targetSdkVersion
9494
versionCode 1
@@ -174,3 +174,7 @@ dependencies {
174174
implementation jscFlavor
175175
}
176176
}
177+
178+
apply plugin: 'com.google.gms.google-services'
179+
apply plugin: 'com.google.firebase.firebase-perf'
180+
apply plugin: 'com.google.firebase.crashlytics'

android/app/google-services.json

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"project_info": {
3+
"project_number": "344714598000",
4+
"firebase_url": "https://react-native-loop.firebaseio.com",
5+
"project_id": "react-native-loop",
6+
"storage_bucket": "react-native-loop.firebasestorage.app"
7+
},
8+
"client": [
9+
{
10+
"client_info": {
11+
"mobilesdk_app_id": "1:344714598000:android:8a29659cd25c7b49bc86b5",
12+
"android_client_info": {
13+
"package_name": "com.onemdev.rnloop"
14+
}
15+
},
16+
"oauth_client": [
17+
{
18+
"client_id": "344714598000-22g3184p280et8ru26ipma8pk98qmmha.apps.googleusercontent.com",
19+
"client_type": 1,
20+
"android_info": {
21+
"package_name": "com.onemdev.rnloop",
22+
"certificate_hash": "8952c955aa3c7e88f3802f147a71e54ed051390f"
23+
}
24+
},
25+
{
26+
"client_id": "344714598000-s26t0caqp6crhce14kqvvckn5taie58b.apps.googleusercontent.com",
27+
"client_type": 1,
28+
"android_info": {
29+
"package_name": "com.onemdev.rnloop",
30+
"certificate_hash": "95897e19e40868bf112f64eb6f24f6fb04239c71"
31+
}
32+
},
33+
{
34+
"client_id": "344714598000-7qq7igb9e3063f5s79b27d4gp4h34dof.apps.googleusercontent.com",
35+
"client_type": 3
36+
}
37+
],
38+
"api_key": [
39+
{
40+
"current_key": "AIzaSyClG10swUyRkCmOiUEW7twOvn4VbxgXeg8"
41+
}
42+
],
43+
"services": {
44+
"appinvite_service": {
45+
"other_platform_oauth_client": [
46+
{
47+
"client_id": "344714598000-7qq7igb9e3063f5s79b27d4gp4h34dof.apps.googleusercontent.com",
48+
"client_type": 3
49+
},
50+
{
51+
"client_id": "344714598000-1qs9ui4gs3cckmpob6sh99ojb4mh8cj9.apps.googleusercontent.com",
52+
"client_type": 2,
53+
"ios_info": {
54+
"bundle_id": "com.onemdev.rnloop"
55+
}
56+
}
57+
]
58+
}
59+
}
60+
}
61+
],
62+
"configuration_version": "1"
63+
}

android/app/src/main/AndroidManifest.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">
22
<uses-permission android:name="android.permission.INTERNET"/>
33
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
44
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
@@ -26,8 +26,9 @@
2626
<action android:name="android.intent.action.VIEW"/>
2727
<category android:name="android.intent.category.DEFAULT"/>
2828
<category android:name="android.intent.category.BROWSABLE"/>
29-
<data android:scheme="myapp"/>
30-
<data android:scheme="com.anonymous.apprn"/>
29+
<data android:scheme="rnloop"/>
30+
<data android:scheme="com.onemdev.rnloop"/>
31+
<data android:scheme="exp+rnloop"/>
3132
</intent-filter>
3233
</activity>
3334
</application>

android/app/src/main/java/com/anonymous/apprn/MainActivity.kt renamed to android/app/src/main/java/com/onemdev/rnloop/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.anonymous.apprn
1+
package com.onemdev.rnloop
22
import expo.modules.splashscreen.SplashScreenManager
33

44
import android.os.Build

android/app/src/main/java/com/anonymous/apprn/MainApplication.kt renamed to android/app/src/main/java/com/onemdev/rnloop/MainApplication.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.anonymous.apprn
1+
package com.onemdev.rnloop
22

33
import android.app.Application
44
import android.content.res.Configuration
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)