change package name

This commit is contained in:
Jay 2017-07-05 14:16:05 +08:00
parent f03870e882
commit 05f76e168c
5 changed files with 6 additions and 6 deletions

View File

@ -45,12 +45,12 @@ android_library(
android_build_config( android_build_config(
name = "build_config", name = "build_config",
package = "com.buywhat", package = "xyz.mtfos.buywhat",
) )
android_resource( android_resource(
name = "res", name = "res",
package = "com.buywhat", package = "xyz.mtfos.buywhat",
res = "src/main/res", res = "src/main/res",
) )

View File

@ -94,7 +94,7 @@ android {
buildToolsVersion "23.0.1" buildToolsVersion "23.0.1"
defaultConfig { defaultConfig {
applicationId "com.buywhat" applicationId "xyz.mtfos.buywhat"
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 22 targetSdkVersion 22
versionCode 1 versionCode 1

View File

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.buywhat" package="xyz.mtfos.buywhat"
android:versionCode="1" android:versionCode="1"
android:versionName="1.0"> android:versionName="1.0">

View File

@ -1,4 +1,4 @@
package com.buywhat; package xyz.mtfos.buywhat;
import com.facebook.react.ReactActivity; import com.facebook.react.ReactActivity;

View File

@ -1,4 +1,4 @@
package com.buywhat; package xyz.mtfos.buywhat;
import android.app.Application; import android.app.Application;