Commit 60112b82 authored by Libin Lu's avatar Libin Lu

android

parent d09bdc66
...@@ -46,13 +46,13 @@ android_library( ...@@ -46,13 +46,13 @@ android_library(
android_build_config( android_build_config(
name = 'build_config', name = 'build_config',
package = 'fcm.simplefcmclient', package = 'com.google.firebase.quickstart.fcm',
) )
android_resource( android_resource(
name = 'res', name = 'res',
res = 'src/main/res', res = 'src/main/res',
package = 'fcm.simplefcmclient', package = 'com.google.firebase.quickstart.fcm',
) )
android_binary( android_binary(
......
...@@ -88,7 +88,7 @@ android { ...@@ -88,7 +88,7 @@ android {
buildToolsVersion "23.0.1" buildToolsVersion "23.0.1"
defaultConfig { defaultConfig {
applicationId "fcm.simplefcmclient" applicationId "com.google.firebase.quickstart.fcm"
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 22 targetSdkVersion 22
versionCode 1 versionCode 1
......
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fcm.simplefcmclient" package="com.google.firebase.quickstart.fcm"
android:versionCode="1" android:versionCode="1"
android:versionName="1.0"> android:versionName="1.0">
......
package fcm.simplefcmclient; package com.google.firebase.quickstart.fcm;
import com.facebook.react.ReactActivity; import com.facebook.react.ReactActivity;
......
package fcm.simplefcmclient; package com.google.firebase.quickstart.fcm;
import android.app.Application; import android.app.Application;
import android.util.Log; import android.util.Log;
...@@ -17,7 +17,7 @@ public class MainApplication extends Application implements ReactApplication { ...@@ -17,7 +17,7 @@ public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
@Override @Override
protected boolean getUseDeveloperSupport() { public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG; return BuildConfig.DEBUG;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment