Hi All,
I am trying to use the Google Play Campaign Tracking and they tell me to edit the AndroidManifest.xml.
How can I edit the AndroidManifest.xml in Appery.io before exporting the app?
Thank you!
Hi All,
I am trying to use the Google Play Campaign Tracking and they tell me to edit the AndroidManifest.xml.
How can I edit the AndroidManifest.xml in Appery.io before exporting the app?
Thank you!
Hello! Please take a look here http://docs.appery.io/tutorials/sourc...
Thank you Maryna!
So can I actually use the code snippet from Google SDK in the app? like explained here?
https://developers.google.com/analyti...
The snippet starts with some imports:
package com.example.app;
import com.google.analytics.tracking.android.Fields;
import com.google.analytics.tracking.android.GoogleAnalytics;
import com.google.analytics.tracking.android.MapBuilder;
import com.google.analytics.tracking.android.Tracker;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import java.util.Map;
Is there a way I can import all of this in Appery.io.
My goal is NOT to edit the app after I export it from Appery, I want it to be ready with all the tracking code ready to be published on the store. How is it feasible?
You can add such implementation in your App. First of all, you can export Eclipse project, make all source changes
and make sure that you can compile code without errors and get functionality that you want. After that you can add
java, AndroidManifest.xml, ... files to the source files in the visual builder. One more thing from "Source Editing Tutorial" that you should known:
[quote:]
The fact is that you cannot make any changes in the visual builder after you have edited the source code.
That is why all the necessary changes in the code should be made at the very end of the UI design.
[/quote]
I think this is the correct way how to do this.