Commit 962e2970 authored by renato's avatar renato

Fixed package name for Android

parent d6835f19
...@@ -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 = 'com.simplefcmclient', package = 'fcm.simplefcmclient',
) )
android_resource( android_resource(
name = 'res', name = 'res',
res = 'src/main/res', res = 'src/main/res',
package = 'com.simplefcmclient', package = 'fcm.simplefcmclient',
) )
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 "com.simplefcmclient" applicationId "fcm.simplefcmclient"
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="com.simplefcmclient" package="fcm.simplefcmclient"
android:versionCode="1" android:versionCode="1"
android:versionName="1.0"> android:versionName="1.0">
......
package com.simplefcmclient; package fcm.simplefcmclient;
import com.facebook.react.ReactActivity; import com.facebook.react.ReactActivity;
......
package com.simplefcmclient; package fcm.simplefcmclient;
import android.app.Application; import android.app.Application;
import android.util.Log; import android.util.Log;
......
...@@ -6,7 +6,7 @@ buildscript { ...@@ -6,7 +6,7 @@ buildscript {
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.0.0' classpath 'com.android.tools.build:gradle:2.0.0'
classpath 'com.google.gms.google-services:3.0.0' classpath 'com.google.gms:google-services:3.0.0'
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files
......
...@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME ...@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
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