What is the "Android Class Name" for a Facebook application written in Flex?

When setting up the Facebook application, the Android package name and Android class name are required.

The first part is simple, and Google Play even shows me this in my list of applications.

How to find Android class name for Flex application?

Facebook App Settings

+7
source share
3 answers

According to this link,

The class is called AppEntry, and its package name depends on the identifier of the AIR application, but it always starts with "air".

+4
source


As you correctly understood, the package name is simple and can be obtained by looking at the URL of the google game or in the list of application sections in google play.
But in fact, Google Play itself selects the name from the AndroidManifest.xml file.
You can find out the package name and class name from the AndroidManifest.xml file.
No matter what tool you use to create the application, it should finally be an APK file, and the manifest file xml will be inside apk.
If you look at the xml manifest file, the name of the Android package is the value in the attribute element "package =".
For example, if this line is read - package = "com.example.APP1", then your Android package name is com.example.APP1.
For the Android class name, you should look at the manifest file and determine what action it is that refers to the MAIN and LAUNCHER actions.
It usually starts with a "."
For example, if he says ".MainClass", then your Android class name will become - com.example.APP1.MainClass (using com.example.APP1 as the application package name above.
Hope this helps.

+3
source

β€œAndroid class name” refers to the class name of your Launcher Activity application defined in AndroidManifest.xml. which should be defined with a filter below intent in your Android Manifest.xml

<intent-filter > <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> 
0
source

All Articles