Browse Source

Rename the package of the Android app

j8
Lyubomir Marinov 8 years ago
parent
commit
d939ae5fb2

+ 2
- 2
android/app/BUCK View File

@@ -46,13 +46,13 @@ android_library(
46 46
 
47 47
 android_build_config(
48 48
   name = 'build_config',
49
-  package = 'org.jitsi.jitsi_meet_react',
49
+  package = 'org.jitsi.meet',
50 50
 )
51 51
 
52 52
 android_resource(
53 53
   name = 'res',
54 54
   res = 'src/main/res',
55
-  package = 'org.jitsi.jitsi_meet_react',
55
+  package = 'org.jitsi.meet',
56 56
 )
57 57
 
58 58
 android_binary(

+ 1
- 1
android/app/build.gradle View File

@@ -98,7 +98,7 @@ android {
98 98
     buildToolsVersion '23.0.1'
99 99
 
100 100
     defaultConfig {
101
-        applicationId 'org.jitsi.jitsi_meet_react'
101
+        applicationId 'org.jitsi.meet'
102 102
         minSdkVersion 16
103 103
         targetSdkVersion 22
104 104
         versionCode Integer.parseInt("${version}")

+ 1
- 1
android/app/src/main/AndroidManifest.xml View File

@@ -1,5 +1,5 @@
1 1
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
-    package="org.jitsi.jitsi_meet_react"
2
+    package="org.jitsi.meet"
3 3
     android:versionCode="1"
4 4
     android:versionName="1.0">
5 5
 

android/app/src/main/java/org/jitsi/jitsi_meet_react/MainActivity.java → android/app/src/main/java/org/jitsi/meet/MainActivity.java View File

@@ -1,4 +1,4 @@
1
-package org.jitsi.jitsi_meet_react;
1
+package org.jitsi.meet;
2 2
 
3 3
 import android.os.Bundle;
4 4
 import com.crashlytics.android.Crashlytics;

android/app/src/main/java/org/jitsi/jitsi_meet_react/MainApplication.java → android/app/src/main/java/org/jitsi/meet/MainApplication.java View File

@@ -1,4 +1,4 @@
1
-package org.jitsi.jitsi_meet_react;
1
+package org.jitsi.meet;
2 2
 
3 3
 import android.app.Application;
4 4
 import android.util.Log;

Loading…
Cancel
Save