FCM integration in Android app which uses Android.Mk build
I wanted to integrate the FCM in Android application which uses Android.mk build system in framework build
Is there any alternative to use "apply plugin: 'com.google.gms.google-services'" in Andorid.mk or Android.bp other build system?
android firebase firebase-cloud-messaging
add a comment |
I wanted to integrate the FCM in Android application which uses Android.mk build system in framework build
Is there any alternative to use "apply plugin: 'com.google.gms.google-services'" in Andorid.mk or Android.bp other build system?
android firebase firebase-cloud-messaging
add a comment |
I wanted to integrate the FCM in Android application which uses Android.mk build system in framework build
Is there any alternative to use "apply plugin: 'com.google.gms.google-services'" in Andorid.mk or Android.bp other build system?
android firebase firebase-cloud-messaging
I wanted to integrate the FCM in Android application which uses Android.mk build system in framework build
Is there any alternative to use "apply plugin: 'com.google.gms.google-services'" in Andorid.mk or Android.bp other build system?
android firebase firebase-cloud-messaging
android firebase firebase-cloud-messaging
edited Nov 20 '18 at 10:49
KENdi
5,7092821
5,7092821
asked Nov 20 '18 at 10:10
Sathish
5613
5613
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
What the plugin does essentially is parse your google-services.json
file and copies the values in it into an xml resource file. It then injects some code into your project that takes care of calling FirebaseApp.initializeApp
for you.
You can of course do all this yourself if you want to.
In your AndroidManifest.xml:
<provider
android:authorities="yourapp.package.name.myFcmInitProvider"
android:name=".MyFcmInitProvider"
android:exported="false" />
<!-- Make sure that Google's FirebaseInitProvider isn't included in your app -->
<provider
android:name="com.google.firebase.provider.FirebaseInitProvider"
android:authorities="yourapp.package.name.firebaseinitprovider"
android:exported="false"
tools:node="remove" />
MyFcmInitProvider.kt:
class MyFcmInitProvider : ContentProvider() {
override fun onCreate(): Boolean {
// Application ID can be found in google-services.json.
// Add additional credentials as necessary.
val builder = FirebaseOptions.Builder().setApplicationId(myApplicationId)
if (null == FirebaseApp.initializeApp(context, builder.build())) {
// Initialization failed
}
return false
}
// Required overrides
override fun getType(uri: Uri?): String? = null
override fun delete(uri: Uri?, selection: String? selectionArgs: Array<out String>?): Int = 0
override fun update(uri: Uri?, values: ContentValues?, selection: String?, selectionArgs: Array<out String>?): Int = 0
override fun insert(uri: Uri?, values: ContentValues?): Uri? = null
override fun query(uri: Uri?, projection: Array<out String>?, selection: String?, selectionArgs: Array<out String>?, sortOrder: String?): Cursor? = null
}
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53390655%2ffcm-integration-in-android-app-which-uses-android-mk-build%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
What the plugin does essentially is parse your google-services.json
file and copies the values in it into an xml resource file. It then injects some code into your project that takes care of calling FirebaseApp.initializeApp
for you.
You can of course do all this yourself if you want to.
In your AndroidManifest.xml:
<provider
android:authorities="yourapp.package.name.myFcmInitProvider"
android:name=".MyFcmInitProvider"
android:exported="false" />
<!-- Make sure that Google's FirebaseInitProvider isn't included in your app -->
<provider
android:name="com.google.firebase.provider.FirebaseInitProvider"
android:authorities="yourapp.package.name.firebaseinitprovider"
android:exported="false"
tools:node="remove" />
MyFcmInitProvider.kt:
class MyFcmInitProvider : ContentProvider() {
override fun onCreate(): Boolean {
// Application ID can be found in google-services.json.
// Add additional credentials as necessary.
val builder = FirebaseOptions.Builder().setApplicationId(myApplicationId)
if (null == FirebaseApp.initializeApp(context, builder.build())) {
// Initialization failed
}
return false
}
// Required overrides
override fun getType(uri: Uri?): String? = null
override fun delete(uri: Uri?, selection: String? selectionArgs: Array<out String>?): Int = 0
override fun update(uri: Uri?, values: ContentValues?, selection: String?, selectionArgs: Array<out String>?): Int = 0
override fun insert(uri: Uri?, values: ContentValues?): Uri? = null
override fun query(uri: Uri?, projection: Array<out String>?, selection: String?, selectionArgs: Array<out String>?, sortOrder: String?): Cursor? = null
}
add a comment |
What the plugin does essentially is parse your google-services.json
file and copies the values in it into an xml resource file. It then injects some code into your project that takes care of calling FirebaseApp.initializeApp
for you.
You can of course do all this yourself if you want to.
In your AndroidManifest.xml:
<provider
android:authorities="yourapp.package.name.myFcmInitProvider"
android:name=".MyFcmInitProvider"
android:exported="false" />
<!-- Make sure that Google's FirebaseInitProvider isn't included in your app -->
<provider
android:name="com.google.firebase.provider.FirebaseInitProvider"
android:authorities="yourapp.package.name.firebaseinitprovider"
android:exported="false"
tools:node="remove" />
MyFcmInitProvider.kt:
class MyFcmInitProvider : ContentProvider() {
override fun onCreate(): Boolean {
// Application ID can be found in google-services.json.
// Add additional credentials as necessary.
val builder = FirebaseOptions.Builder().setApplicationId(myApplicationId)
if (null == FirebaseApp.initializeApp(context, builder.build())) {
// Initialization failed
}
return false
}
// Required overrides
override fun getType(uri: Uri?): String? = null
override fun delete(uri: Uri?, selection: String? selectionArgs: Array<out String>?): Int = 0
override fun update(uri: Uri?, values: ContentValues?, selection: String?, selectionArgs: Array<out String>?): Int = 0
override fun insert(uri: Uri?, values: ContentValues?): Uri? = null
override fun query(uri: Uri?, projection: Array<out String>?, selection: String?, selectionArgs: Array<out String>?, sortOrder: String?): Cursor? = null
}
add a comment |
What the plugin does essentially is parse your google-services.json
file and copies the values in it into an xml resource file. It then injects some code into your project that takes care of calling FirebaseApp.initializeApp
for you.
You can of course do all this yourself if you want to.
In your AndroidManifest.xml:
<provider
android:authorities="yourapp.package.name.myFcmInitProvider"
android:name=".MyFcmInitProvider"
android:exported="false" />
<!-- Make sure that Google's FirebaseInitProvider isn't included in your app -->
<provider
android:name="com.google.firebase.provider.FirebaseInitProvider"
android:authorities="yourapp.package.name.firebaseinitprovider"
android:exported="false"
tools:node="remove" />
MyFcmInitProvider.kt:
class MyFcmInitProvider : ContentProvider() {
override fun onCreate(): Boolean {
// Application ID can be found in google-services.json.
// Add additional credentials as necessary.
val builder = FirebaseOptions.Builder().setApplicationId(myApplicationId)
if (null == FirebaseApp.initializeApp(context, builder.build())) {
// Initialization failed
}
return false
}
// Required overrides
override fun getType(uri: Uri?): String? = null
override fun delete(uri: Uri?, selection: String? selectionArgs: Array<out String>?): Int = 0
override fun update(uri: Uri?, values: ContentValues?, selection: String?, selectionArgs: Array<out String>?): Int = 0
override fun insert(uri: Uri?, values: ContentValues?): Uri? = null
override fun query(uri: Uri?, projection: Array<out String>?, selection: String?, selectionArgs: Array<out String>?, sortOrder: String?): Cursor? = null
}
What the plugin does essentially is parse your google-services.json
file and copies the values in it into an xml resource file. It then injects some code into your project that takes care of calling FirebaseApp.initializeApp
for you.
You can of course do all this yourself if you want to.
In your AndroidManifest.xml:
<provider
android:authorities="yourapp.package.name.myFcmInitProvider"
android:name=".MyFcmInitProvider"
android:exported="false" />
<!-- Make sure that Google's FirebaseInitProvider isn't included in your app -->
<provider
android:name="com.google.firebase.provider.FirebaseInitProvider"
android:authorities="yourapp.package.name.firebaseinitprovider"
android:exported="false"
tools:node="remove" />
MyFcmInitProvider.kt:
class MyFcmInitProvider : ContentProvider() {
override fun onCreate(): Boolean {
// Application ID can be found in google-services.json.
// Add additional credentials as necessary.
val builder = FirebaseOptions.Builder().setApplicationId(myApplicationId)
if (null == FirebaseApp.initializeApp(context, builder.build())) {
// Initialization failed
}
return false
}
// Required overrides
override fun getType(uri: Uri?): String? = null
override fun delete(uri: Uri?, selection: String? selectionArgs: Array<out String>?): Int = 0
override fun update(uri: Uri?, values: ContentValues?, selection: String?, selectionArgs: Array<out String>?): Int = 0
override fun insert(uri: Uri?, values: ContentValues?): Uri? = null
override fun query(uri: Uri?, projection: Array<out String>?, selection: String?, selectionArgs: Array<out String>?, sortOrder: String?): Cursor? = null
}
answered Nov 20 '18 at 11:11
Michael
42.5k84292
42.5k84292
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53390655%2ffcm-integration-in-android-app-which-uses-android-mk-build%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown