Rename the package of the Android app

This commit is contained in:
Lyubomir Marinov 2016-12-06 15:33:03 -06:00
parent 8f02b9249e
commit d939ae5fb2
5 changed files with 6 additions and 6 deletions

View File

@ -46,13 +46,13 @@ android_library(
android_build_config(
name = 'build_config',
package = 'org.jitsi.jitsi_meet_react',
package = 'org.jitsi.meet',
)
android_resource(
name = 'res',
res = 'src/main/res',
package = 'org.jitsi.jitsi_meet_react',
package = 'org.jitsi.meet',
)
android_binary(

View File

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

View File

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

View File

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

View File

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