[Q] fix force close on boot- need help - Android Q&A, Help & Troubleshooting

Ive gotten pretty far on my own launcher.I used this code to make it so when you click home your launcher appears:
<activity
android:label="@string/app_name"
android:name=".yourclassname.java" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
This works but when i reboot and click on my launcher it force closes. To fix this temporarily i just click on my app from a different launcher. Anyone have an idea on how to fix this? THANKS

Related

[Q] what is “BasicDream” in android ICS?

I read the Launcher source code which version is ICS. There is a RocketLauncher class which extends BasicDream. what is BasicDream? what can BasicDream do? I can find this line import android.support.v13.dreams.BasicDream;, but I can't find any information about it on Internet. Please give me some information to understand it. Thanks!
I found those code in launcher manifest.xml <activity android:name="com.android.launcher2.RocketLauncher" android:label="@string/dream_name" android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DREAM" /> </intent-filter> </activity>
There is a new category android.intent.category.DREAM, what is it used to do? That RocketLauncher is an Activity?

[Q] ADW Theme - Help...

Alright so to start off i have eclipse, the android sdk, and all that other good stuff setup properly.
Now the problem is i keep getting an error in the androidmanifest.xml saying
<uses-sdk android:minSdkVersion="4"/>
The error message when clicked upon is, <uses-sdk> tag appears after <application> tag.
I have tried multiple versions of the sdk build including 2.2 (as the guide suggest) and changing the minimum sdk requirement but i always seem to run into this exact same problem. Any ideas? Oh and also im using this template
AnderWeb-ADW.Theme-Template-d8491c4
Heres the entire AndroidManifest.xml...
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="Red.Glow.Adw"
android:versionCode="1"
android:versionName="1.0"
android:installLocation="internalOnly">
<application android:label="@string/theme_title" android:icon="@drawable/theme_icon">
<activity android:name=".main"
android:label="@string/theme_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="org.adw.launcher.THEMES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="org.adw.launcher.icons.ACTION_PICK_ICON" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="red.glow.adw.docks"
android:label="@string/theme_title"
android:icon="@drawable/theme_icon">
<intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>
<provider android:name="red.glow.adw.docksProvider" android:authorities="red.glow.adw.docksProvider" />
</application>
<uses-sdk android:minSdkVersion="4"/>
</manifest>
Ehh figured it out.. AnderWeb's template build was throwing me up a ton of errors but kaydensigh's template works great.

Please Help, Settings crash I don't know why

Hi, earlier in my quest to create a Home Screen app, I have stumbled upon this code which was brilliant in order to let me do exactly what I wish to do. it couldn't work better than it does.
However ever since I included this when I run it on a tablet the following message appears "Settings have stopped working" the app continues functioning without any worries, however this is really bad because I don't want it to lhave these errors since I'm plannning on distributing the application....
<activity
android:name="com.myapp.launcher.MainActivity"
android:exported="true"
/>
<activity-alias
android:name="LauncherAlias1"
android:targetActivity="com.myapp.launcher.MainActivity"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity-alias>
<activity-alias
android:name="LauncherAlias2"
android:enabled="false"
android:targetActivity="com.myapp.launcher.MainActivity"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity-alias>

Amazfit Watch 2 - TrainingPlan data lost after re-pairing

Hi,
need your help with TrainingPlan app.
After reinstalling Amazfit Watch app, I had to pair the phone with watch again. Don't know why but after sync, TrainingPlan app got wiped.
It's not that big of a deal, because all the activities are still recorded on the watch/mobile/strava but I was in the middle of half-marathon training plan and would like to continue it.
In order to restore/recreate this data, I need to know how exactly this app is storing it.
I have already reviewed the source code available on gitlab.com - /Neuer_User/PACEfied_AmazFit
I have also downloaded the TrainingPlan.apk directly from the watch (with adb) and decompiled it (apktools) and reviewed the app in IDE.
Here is the content of AndroidManifest.xml from TrainingPlan:
Code:
...
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permisison android:name="com.huami.watch.permission.RECEIVE_WAKEUP"/>
<uses-permission android:name="com.huami.watch.permission.READ_USER_SETTINGS"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.huami.watch.permission.READ_USER_SETTINGS"/>
<uses-permission android:name="com.huami.watch.companion.permission.READ_SETTINGS"/>
<uses-permission android:name="com.huami.watch.companion.permission.WRITE_SETTINGS"/>
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
<uses-permission android:name="com.huami.watch.permission.READ_USER_SETTINGS"/>
<uses-permission android:name="com.huami.watch.permission.WRITE_USER_SETTINGS"/>
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:name=".TrainApplication" android:supportsRtl="true" android:theme="@style/train_center_theme">
<meta-data android:name="com.huami.watch.launcher.springboard.PASSAGER_TARGET" android:resource="@array/spring_depend"/>
<activity android:name=".ui.test.TestProvider"/>
<activity android:name=".ui.activity.TrainPlanSimpleSelectActivity" android:theme="@style/train_center_theme">
<intent-filter>
<action android:name="com.huami.watch.train.ui.activity.TrainPlanSimpleSelectActivity"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".ui.activity.TrainPlanDetailSelectActivity" android:theme="@style/train_center_theme">
<intent-filter>
<action android:name="com.huami.watch.train.ui.activity.TrainPlanDetailSelectActivity"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".ui.activity.TrainRecordDetailActivity">
<intent-filter>
<action android:name="com.huami.watch.train.ui.activity.TrainRecordDetailActivity"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".ui.activity.TrainWeeklyRecordDetailActivity"/>
<activity android:name=".ui.activity.TrainWidgetRemindActivity"/>
<service android:name=".ui.notification.NotificationService"/>
<receiver android:name=".ui.notification.NotificationReceiver">
<intent-filter>
<action android:name="com.huami.watch.train.broadcast.daytrainrecord"/>
</intent-filter>
<intent-filter>
<action android:name="com.huami.watch.train.broadcast.finishtrainrecord"/>
</intent-filter>
<intent-filter>
<action android:name="com.huami.watch.train.broadcast.start_service"/>
</intent-filter>
<intent-filter>
<action android:name="com.huami.watch.train.broadcast.end_service"/>
</intent-filter>
<intent-filter>
<action android:name="com.huami.watch.train.broadcast.appstart"/>
</intent-filter>
</receiver>
<receiver android:enabled="true" android:exported="true" android:name=".ui.notification.CloudDataReceiver">
<intent-filter>
<action android:name="com.huami.watch.companion.action.DataSyncRequestApps"/>
</intent-filter>
</receiver>
<provider android:authorities="com.huami.watch.train.ui.provider.dayTrainRecordProvider" android:exported="true" android:name="com.huami.watch.train.ui.provider.DayTrainRecordProvider"/>
<activity android:name=".ui.activity.FinishTrainReasonActivity"/>
</application>
</manifest>
Still no luck.
Can anybody help?
If the data is stored in the watch only (and I think it's the case for Training app), it was wiped out when you unpaired, so there is no way to recover it.
lfom said:
If the data is stored in the watch only (and I think it's the case for Training app), it was wiped out when you unpaired, so there is no way to recover it.
Click to expand...
Click to collapse
Sure. That's understandable. Still, if I know exactly how is it stored - I could recreate it.
I saw a sqlite3 file in xbin folder. Problem is that it is encrypted and I cannot open it.
Does anyone have any idea how do those guys store data on such apps?
pkondrat said:
Sure. That's understandable. Still, if I know exactly how is it stored - I could recreate it.
I saw a sqlite3 file in xbin folder. Problem is that it is encrypted and I cannot open it.
Does anyone have any idea how do those guys store data on such apps?
Click to expand...
Click to collapse
Ah, I see what you want to do now. See my AmazeBackup tool, it backups and restores data to the Sports app, you can use adb to backup data from TrainingPlan app, extract its db, modify the file, add the modded file to backup manually, then try to restore the file to watch (restart watch after you restore to make sure it loads the new data).
lfom - thanks a lot for the tip.
I solved it.
Biggest challenge was to identify and get the access to /data/data/com.huami.watch.train/databases/train_center.db which hold all the data.
After that happended, it was just a try and check for different values in TrainRecord and DayTrainRecord DB tables + adb pull and adb push as a root.
Still, I wonder when they would add those training plans to Amazfit Watch app and synchronize this data properly.

How to Mod Netflix TV Apk without device check??

Hey I have an MI TV 55 Inch 4k it runs patchwall on top of Android, the most irritating thing about this TV is it can run Netflix but it does not run it.
Whenever I try to run the tv version of Netflix a popup opens up in the foreground saying my device is not supported (-13) but my account is logged in in the background.
If anyone can help me in one of two things I would be grateful.
1. Remove the popup in the foreground that says your device is not supported (or)
2. Remove device check from Netflix APK.
I already decompiled the latest version of TV apk but don't know which line to remove to get rid of device check.
Total newbie, so thanks for the help in advance.
<?xml version="1.0" encoding="utf-8" standalone="no"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:compileSdkVersion="28" android:compileSdkVersionCodename="9" package="com.netflix.ninja" platformBuildVersionCode="2440" platformBuildVersionName="6.1.1 build 2440">
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
<uses-feature android:name="android.software.leanback"/>
<uses-feature android:name="nrdp.modelgroup" android:required="true"/>
<permission android:name="com.netflix.ninja.permission.ESN" androidrotectionLevel="signatureOrSystem"/>
<permission android:name="com.netflix.ninja.permission.NETFLIX_KEY" androidrotectionLevel="signatureOrSystem"/>
<permission android:name="com.netflix.ninja.permission.TILES" androidrotectionLevel="signatureOrSystem"/>
<permission android:name="com.netflix.ninja.permission.TOKEN" androidrotectionLevel="signatureOrSystem"/>
<permission android:name="com.netflix.ninja.permission.SND" androidrotectionLevel="signatureOrSystem"/>
<uses-permission android:name="com.amazon.device.permission.COMRADE_CAPABILITIES"/>
<uses-feature android:name="android.hardware.wifi" android:required="false"/>
<uses-feature android:name="android.hardware.bluetooth" android:required="false"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.GET_TASKS"/>
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
<uses-permission android:name="com.netflix.ninja.permission.ESN"/>
<uses-permission android:name="com.netflix.ninja.permission.NETFLIX_KEY"/>
<uses-permission android:name="com.netflix.ninja.permission.TILES"/>
<uses-permission android:name="com.android.providers.tv.permission.READ_EPG_DATA"/>
<uses-permission android:name="com.android.providers.tv.permission.WRITE_EPG_DATA"/>
<uses-permission android:name="com.netflix.ninja.permission.TOKEN"/>
<uses-permission android:name="com.netflix.ninja.permission.PREAPP_COOKIE"/>
<uses-permission android:name="com.netflix.ninja.permission.SND"/>
<uses-permission android:name="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE"/>
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
<permission android:name="com.netflix.ninja.permission.C2D_MESSAGE" androidrotectionLevel="signature"/>
<uses-permission android:name="com.netflix.ninja.permission.C2D_MESSAGE"/>
<application android:allowBackup="false" android:banner="@drawable/ic_banner" android:icon="@drawable/netflix" android:label="@string/app_name" android:logo="@drawable/ic_banner" android:name="com.netflix.ninja.NetflixApplication" android:theme="@style/Theme.NetflixDefault">
<activity android:banner="@drawable/ic_banner" android:configChanges="fontScale|keyboard|keyboardHidden|layoutDirection|locale|mcc|mnc|navigation|touchscreen|uiMode" android:label="@string/app_name" android:launchMode="singleTask" android:name="com.netflix.ninja.MainActivity" android:resizeableActivity="false" android:theme="@style/Theme.NetflixDefault">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LEANBACK_LAUNCHER"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<action android:name="com.google.cast.action.START"/>
<data android:host="Netflix" android:scheme="cast"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
<action android:name="com.netflix.action.DIAL_START"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
<action android:name="com.netflix.amazon.action.DIAL"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:host="www.netflix.com" android:scheme="nflx"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="www.netflix.com" android:scheme="http"/>
<data androidathPattern="/title.*"/>
<data androidathPattern="/.*/title.*"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="www.netflix.com" android:scheme="https"/>
<data androidathPattern="/title.*"/>
<data androidathPattern="/.*/title.*"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="www.netflix.com" android:scheme="http"/>
<data androidathPattern="/watch.*"/>
<data androidathPattern="/.*/watch.*"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="www.netflix.com" android:scheme="https"/>
<data androidathPattern="/watch.*"/>
<data androidathPattern="/.*/watch.*"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="www.netflix.com" android:scheme="http"/>
<data androidathPattern="/browse"/>
<data androidathPattern="/home"/>
<data androidathPattern="/.*/home"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="www.netflix.com" android:scheme="https"/>
<data androidathPattern="/browse"/>
<data androidathPattern="/home"/>
<data androidathPattern="/.*/home"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="www.netflix.com" android:scheme="http"/>
<data androidathPattern="/deeplink.*"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="www.netflix.com" android:scheme="https"/>
<data androidathPattern="/deeplink.*"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="netflix"/>
</intent-filter>
</activity>
<meta-data android:name="isGame" android:value="false"/>
<meta-data android:name="whisperplay" android:resource="@xml/whisperplay"/>
<receiver android:exported="true" android:name="com.netflix.ninja.NetflixKeyReceiver" androidermission="com.netflix.ninja.permission.NETFLIX_KEY">
<intent-filter>
<action android:name="com.netflix.ninja.intent.action.NETFLIX_KEY"/>
</intent-filter>
</receiver>
<receiver android:enabled="true" android:exported="true" android:name="com.netflix.ninja.EsnInquiryReceiver" androidermission="com.netflix.ninja.permission.ESN">
<intent-filter>
<action android:name="com.netflix.ninja.intent.action.ESN"/>
</intent-filter>
</receiver>
<receiver android:enabled="true" android:exported="true" android:name="com.netflix.ninja.PreAppInitTilesReceiver" androidermission="com.netflix.ninja.permission.TILES">
<intent-filter>
<action android:name="com.netflix.ninja.intent.action.INIT_TILES"/>
</intent-filter>
</receiver>
<receiver android:enabled="true" android:exported="true" android:name="com.netflix.ninja.SNDBroadcastReceiver" androidermission="com.netflix.ninja.permission.SND">
<intent-filter>
<action android:name="com.netflix.ninja.intent.action.SND_REQUEST"/>
</intent-filter>
</receiver>
<receiver android:enabled="true" android:exported="true" android:name="com.netflix.ninja.InitializeProgramsReceiver">
<intent-filter>
<action android:name="android.media.tv.action.INITIALIZE_PROGRAMS"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</receiver>
<receiver android:enabled="true" android:exported="true" android:name="com.netflix.ninja.BootCompleteReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</receiver>
<receiver android:enabled="true" android:exported="true" android:name="com.netflix.ninja.CapabilityRequestReceiver">
<intent-filter>
<action android:name="com.amazon.device.REQUEST_CAPABILITIES"/>
</intent-filter>
</receiver>
<service android:name="com.netflix.ninja.PreAppRecoRefreshJobService" androidermission="android.permission.BIND_JOB_SERVICE"/>
<service android:name="com.netflix.ninja.PreAppInitTileJobService" androidermission="android.permission.BIND_JOB_SERVICE"/>
<service android:name="com.netflix.ninja.DebugJobService" androidermission="android.permission.BIND_JOB_SERVICE"/>
<service android:name="com.netflix.ninja.SNDJobService" androidermission="android.permission.BIND_JOB_SERVICE"/>
<service android:name="com.netflix.ninja.alwaysfresh.AlwaysRefreshJobService" androidermission="android.permission.BIND_JOB_SERVICE"/>
<service android:name="com.netflix.ninja.alwaysfresh.AlwaysFreshNewJobService" androidermission="android.permission.BIND_JOB_SERVICE"/>
<receiver android:enabled="true" android:exported="true" android:name="com.netflix.ninja.DialStopReceiver">
<intent-filter>
<action android:name="com.netflix.action.DIAL_STOP"/>
</intent-filter>
</receiver>
<provider android:authorities="com.netflix.mediaclient.preapp" android:exported="true" android:name="com.netflix.mediaclient.preapp.PreAppRecoBuilder$PreAppRecoContentProvider"/>
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>
<meta-data android:name="firebase_analytics_collection_deactivated" android:value="true"/>
<meta-data android:name="google_analytics_adid_collection_enabled" android:value="false"/>
<service android:enabled="true" android:exported="true" android:name="com.netflix.ninja.NetflixService">
<intent-filter>
<action android:name="com.netflix.ninja.NetflixService"/>
</intent-filter>
</service>
<service android:name="com.netflix.mediaclient.service.fcm.FcmService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service android:name="com.netflix.mediaclient.service.fcm.FcmJobService">
<intent-filter>
<action android:name="com.firebase.jobdispatcher.ACTION_EXECUTE"/>
</intent-filter>
</service>
<meta-data android:name="android.support.VERSION" android:value="26.1.0"/>
<activity android:excludeFromRecents="true" android:exported="false" android:name="com.google.android.gms.auth.api.signin.internal.SignInHubActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
<service android:exported="true" android:name="com.google.android.gms.auth.api.signin.RevocationBoundService" androidermission="com.google.android.gms.auth.api.signin.permission.REVOCATION_NOTIFICATION"/>
<service android:exported="true" android:name="com.google.firebase.messaging.FirebaseMessagingService">
<intent-filter androidriority="-500">
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service android:name="com.google.firebase.components.ComponentDiscoveryService">
<meta-data android:name="com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar" android:value="com.google.firebase.components.ComponentRegistrar"/>
<meta-data android:name="com.google.firebase.components:com.google.firebase.iid.Registrar" android:value="com.google.firebase.components.ComponentRegistrar"/>
</service>
<receiver android:enabled="true" android:exported="false" android:name="com.google.android.gms.measurement.AppMeasurementReceiver"/>
<receiver android:enabled="true" android:exported="true" android:name="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" androidermission="android.permission.INSTALL_PACKAGES">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER"/>
</intent-filter>
</receiver>
<service android:enabled="true" android:exported="false" android:name="com.google.android.gms.measurement.AppMeasurementService"/>
<service android:enabled="true" android:exported="false" android:name="com.google.android.gms.measurement.AppMeasurementJobService" androidermission="android.permission.BIND_JOB_SERVICE"/>
<receiver android:exported="true" android:name="com.google.firebase.iid.FirebaseInstanceIdReceiver" androidermission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE"/>
<category android:name="com.netflix.ninja"/>
</intent-filter>
</receiver>
<service android:exported="true" android:name="com.google.firebase.iid.FirebaseInstanceIdService">
<intent-filter androidriority="-500">
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
<activity android:exported="false" android:name="com.google.android.gms.common.api.GoogleApiActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
<service android:exported="true" android:name="com.firebase.jobdispatcher.GooglePlayReceiver" androidermission="com.google.android.gms.permission.BIND_NETWORK_TASK_SERVICE">
<intent-filter>
<action android:name="com.google.android.gms.gcm.ACTION_TASK_READY"/>
</intent-filter>
</service>
<provider android:authorities="com.netflix.ninja.crashlyticsinitprovider" android:exported="false" android:initOrder="100" android:name="com.crashlytics.android.CrashlyticsInitProvider"/>
<provider android:authorities="com.netflix.ninja.firebaseinitprovider" android:exported="false" android:initOrder="100" android:name="com.google.firebase.provider.FirebaseInitProvider"/>
<meta-data android:name="android.arch.lifecycle.VERSION" android:value="27.0.0-SNAPSHOT"/>
</application>
</manifest>
Click to expand...
Click to collapse
any solution? i have a vu49 android tv and i still cant run it.
the mobile version works
but i want the 4k version to work offically .
I also need netflix mod apj
I need this as well.. Any help?

Categories

Resources