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

android

parent d09bdc66
......@@ -46,13 +46,13 @@ android_library(
android_build_config(
name = 'build_config',
package = 'fcm.simplefcmclient',
package = 'com.google.firebase.quickstart.fcm',
)
android_resource(
name = 'res',
res = 'src/main/res',
package = 'fcm.simplefcmclient',
package = 'com.google.firebase.quickstart.fcm',
)
android_binary(
......
......@@ -88,7 +88,7 @@ android {
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "fcm.simplefcmclient"
applicationId "com.google.firebase.quickstart.fcm"
minSdkVersion 16
targetSdkVersion 22
versionCode 1
......
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fcm.simplefcmclient"
package="com.google.firebase.quickstart.fcm"
android:versionCode="1"
android:versionName="1.0">
......
package fcm.simplefcmclient;
package com.google.firebase.quickstart.fcm;
import android.app.Application;
import android.util.Log;
......@@ -17,7 +17,7 @@ public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
@Override
protected boolean getUseDeveloperSupport() {
public boolean getUseDeveloperSupport() {
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