• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Google services on Hawueii Media Pad M6

After using the Huawei Honor Pad JD09 for a few years and being very happy with it I bought a Media Pad M6 because of the higher specifications-4GB RAM, 128 GB internal storage, holds a 256 GB micro SD card and has a faster processor. I couldn't find specs this good on an Australian seller for an 8" tablet so I got one from Gear Best who I bought the first tablet from. the first one came with a Chinese ROM and language. I changed to English, uninstalled most of the Chinese apps and sideloaded the google play store, changed to the google launcher and its great. I only have the google apps I use, unlike a local tablet which has all of them. Unfortunately this new tablet seems to be blocking attempts to use any google apps. They install but don't work, whereas Microsoft's apps including the Microsoft launcher all work fine (although the Microsoft launcher cant be set to default, have to click on it after booting into the Huawei launcher. I saw some internet site suggesting a fix using an app from lzplay, but that link has been taken down. Anyone else got an easy fix? There are alternatives: Gmail works in the email app and outlook, my photos on google photos are duplicated on one drive, the calendar is duplicated in Microsoft's, and while not as good there are other mapping options. Plus all of google works in a web browser, just less convenient. Interesting Adobe Digital editions works, but Adobe reader is "incompatible". Most of the apps I got from phone clone (from my LG phone- the Honor pad, Hauwei's old device is not compatible-go figure when they want you to update from your old device!), they are not in hauwei's store but nearly all the ones I want work ok.

One Phone Showing Up as Two Unique Devices?

Ok...
So I think I'm being stalked by the government lol. Look it up, gangstalking, the whole thing sounds ridonkulous.

I've had a couple of questions I couldn't get answered though.

At one point I thought I was going through a sextortion case so I ripped the battery out of my Galaxy S8. I'm lucky if it gets a 30 second charge on the wall considering theres no battery.

Now this phone I ripped the battery out of shows up as TWO UNIQUE devices on the playstore.

Also the S10 I upgraded to has an IMEI number that apparently starts with random.

Any help would be appreciated, kind of at a loss at the moment. I'm so far in the hole money wise it isn't even funny.

Attachments

  • 2.png
    2.png
    155.9 KB · Views: 169
  • rand.png
    rand.png
    47.2 KB · Views: 153

No camera

I have an lg-g4 and I can't get the camera to work. I connected to a friend's phone to charge mine briefly and my phone suddenly started working but it no longer works.
Apparently it is a problem with this phone
If anyone knows of a way to fix it I would love to know

Help CAN'T FLASH FIRMWARE! Android keeps rebooting!

Hello everyone,

I have a problem with my Samsung Galaxy J4+ (Android 9). I was flashing a firmware with Odin3, when the electricity went out, and the flashing stopped. I got out DOWNLOAD MODE, and it showed me a screen: "An error has occurred while updating the device software. Use the Emergency recovery function in the Smart Switch PC software". When the power came back, I reconnected the phone to PC and it started a reboot loop only in this screen.
I tried to enter the DOWNLOAD MODE again by pressing VOLUME UP + DOWN when the phone started. It asked me to continue or cancel, so I thought it worked, but after I continued (VOLUME UP), it rebooted again, in a infinite loop.

I tried to be fast in flashing the firmware, but it stays in DOWNLOAD MODE only for a couple seconds, and there is not enough time for ODIN to finish it.

I really need some help! If someone know any way to solve this, I would be really grateful if you could help me!

Thank you!

What a pain!

So I'm currently in the process of totally revamping my directory structure for Dropbox, and I just wanted to say: WHAT A PAIN!!!!!!! (Is that enough exclamation points?)

Seriously, it sucks. For example, from its site in my browser, I moved several directories to their new homes--where directories of the same names already existed. Expecting it to act like my beloved Dolphin [file manager on Linux], I thought it would prompt me, i.e., "directory already exists," followed by choices, "apply to all: skip, write into, rename, cancel." BUT NO!! Instead, it created "documents (1)" and "videos (1)" and ".kde_110519 (1)" and so on. Then I had to MANUALLY compare each of the "(1)" directories with the originals, which is no small feat because their tools for such things suck, and then manually merge or delete as needed.

I'd like to archive off some old stuff, but don't see any way to do that. What I want is, say, an 'archive' directory where I can move things I no longer want to sync, but do want to keep for posterity. I'd want to know that they're safe, and their files won't be deleted if I delete matching files on my computer.

Oh! It's almost done...

Help Unable to install Intel HAXM

Hi guys, I've been trying to solve the problem for more than 1 month, please help

My cpu is AMD Atholn II X2 250



Unable to install Intel HAXM

Your CPU does not support required features (VT-x or SVM).

Unfortunately, your computer does not support hardware accelerated virtualization.

Here are some of your options:

  1. Use a physical device for testing

  2. Develop on a Windows/OSX computer with an Intel processor that supports VT-x and NX

  3. Develop on a Linux computer that supports VT-x or SVM

  4. Use an Android Virtual Device based on an ARM system image
(This is 10x slower than hardware accelerated virtualization)"

App Inventor How to send variable from php to Android Webview?

Hi! thanks in advance for taking the time to help me :)

few days ago I’ve purchased a codecanyon webview framework, made with Kotlin, it is really a great framework since it helped me to turn my website into a real app (I only know how to develope on php & mysql, not java lol)

And the framework has integrated the OneSignal & Firebase push notifications service…

To this point all is working really great… but I wan’t to level up my project to a new step, and send user-specific push notifications (Ex. Someone post on your profile)

I know that I can take advantage of OneSignal Tags to add a tag for every OneSignal subscribed user with my website userid… but the problem is that I don´t know how to take that $_SESSION[“userid”] from my php website and use it on my Android Webview App to create the OneSignal tag for the current user…

In my Android files, I have a file called OnesignalMessagingService.kt with this information:

`package name...

import android.app.Application
import android.content.Context
import android.content.Intent
import android.util.Log
import com.onesignal.OSNotification
import com.onesignal.OSNotificationAction
import com.onesignal.OSNotificationOpenResult
import com.onesignal.OneSignal
import infix.imrankst1221.codecanyon.MainActivity

class OnesignalMessagingService: Application() {
val TAG = "---Onesignal"
lateinit var mContext: Context

override fun onCreate() {
super.onCreate()
mContext = this
OneSignal.startInit(this)
.setNotificationOpenedHandler(NotificationHandler())
.autoPromptLocation(true)
.inFocusDisplaying(OneSignal.OSInFocusDisplayOption.Notification)
.setNotificationReceivedHandler(NotificationReceivedHandler())
.init()

OneSignal.idsAvailable { userId, registrationId -> Log.d("", ""+userId) }
}


inner class NotificationHandler : OneSignal.NotificationOpenedHandler {
// This fires when a notification is opened by tapping on it.
override fun notificationOpened(result: OSNotificationOpenResult) {
val actionType = result.action.type
val data = result.notification.payload.additionalData
val customKey: String?

if (data != null) {
customKey = data.optString("url", null)
if (customKey != null) {
AppDataInstance.getINSTANCE(mContext)
AppDataInstance.notificationUrl = customKey
AppDataInstance.isOpenOutside = data.optBoolean("is_open_outside", false)
Log.i(TAG, "Link set with value: $customKey")
}
}

if (actionType == OSNotificationAction.ActionType.ActionTaken)
Log.i(TAG, "Button pressed with id: " + result.action.actionID)

val intent = Intent(applicationContext, MainActivity::class.java)
intent.flags = Intent.FLAG_ACTIVITY_REORDER_TO_FRONT or Intent.FLAG_ACTIVITY_NEW_TASK
startActivity(intent)
}
}

private inner class NotificationReceivedHandler : OneSignal.NotificationReceivedHandler {
override fun notificationReceived(notification: OSNotification) {
// receive a notification
}
}
}`

How I can add this code to create the tag for the current user:

`OneSignal.sendTag("userId", "1");`

And how to change userid “1” with my current $_SESSION[“userid”] from the php weview website

I don´t know if it is helpfull but I’ve created a json file with the current session id:

https://tribbr.me/api/json/get_sessionid.php (it only echo information if you are logged in into my website): (Ej. https://jmp.sh/fdMQtdG )

Thanks for your help, I’m really new in Android developing, but with a big desire to learn new stuff every day :)

Help Lg g4 screen replacement problem

Hi.Today i replace my lg g4 broken screen.
When i open i the image is good but the touch doesn't work correctly.
It working when i unlock it for all the time i touch it but when i leave my finger for 1 second and touch it again doesnt responsive and i must close the screen and open it from power button to work for a while.
Any suggestion?

Phone acting very odd.

I've had this phone all of I've week and it's possessed I believe. First of all the in different areas of the settings menu it says phone number UNKNOWN under about phone. I've got many odd services running eating my data up. Some of my settings have been changed and won't allow me to change them back. I've included some screenshots for any feedback y'all may can give. Also I'm running some sort of Qualcomm. Qti. Aurora or something and all I can find in Google is something about dual SIM card. Please help. I know this is vague but I'll answer anything I can.

Attachments

  • Screenshot_20191109-061314.png
    Screenshot_20191109-061314.png
    101.4 KB · Views: 281
  • Screenshot_20191109-061026.png
    Screenshot_20191109-061026.png
    91.1 KB · Views: 273
  • Screenshot_20191109-061652.png
    Screenshot_20191109-061652.png
    74.8 KB · Views: 266

Text Messages Being Split.

So my daughter has had METRO for a month and all her messages have come across normal. She sent one on the 6th of this month at 9 AM and was super long and normal, than at 11:30PM she sent much shorter messages and there all split into tiny messages all ending with part numbers and jumbled. 2/5, 5/5, 1/5, 3/5 and 4/5. How can this be fixed?

Ad Question

Hello! I have a very unique app that allows me to force my users to view ads without having to worry about them getting annoyed. My users will not be clicking on the ads though, they are only going to be forced to watch them. So, I wanted to know what are the best ads to use, where I would get the most revenue. Also, I know revenue differs because of different factors, but can I get a range or a ballpark figure as to how much revenue I can expect per impression with the information I have given you? Thank you!

Problem

Hey everyone
At first I want to apologize for my bad English it's not my main language.
My question is how dangerous king root for my personal data is I had king root on my phone but I didn't root it I had some very private photos on my phone and I heard King root steals data from the users now I have anxiety about my privacy I know this app can do a lot of bad when your phone is rooted but can it also do that when my phone isn't rooted I tried to root my phone with it but it didn't work I hope they did not steal from me and I hope you guys can help me please:(

How can I create an App like Appblock or Forest?

I'm currently using Android Studio to create an App.
I want one of the features to block apps, after you activate this by clicking on a button.

So that the app moves in the background, after clicking the button and when you open for example Youtube, it pops up and says something like: "Deactivate this program first".

The basic idea is of course a Clicklistener on this button to start the program
But know I want to know, which commmand you have to use so that the app is permanently supervising, which app you are opening/ have openend, even though the app moved to the background.
Some kind of Clicklistener for this (in the example:Youtube) exact app.

I'm fairly new to App programming :)
Thanks in advance.

Example Apps
https://www.forestapp.cc/
https://www.appblock.app/

#1

Root Reboot

Hey, the phone I've been using have started to get a black screen and get glitches across the screen. Right now it's in a whole black mode where I can't see anything, it doesn't react if I hold any of the buttons and all I see is some glitches. And if it does turn on it will only be on for a few seconds then it will become black again. I wonder if it will help if I reset it or is it a matter of the hardware?
Over-time the charge socket have been getting damp a lot and if this may have been the effects and it's actually the hardware, may be possible? Thanks if answer.

Annoying Popup Can Anyone Help

I have the Samsung Galaxy Note 10+ phone and periodcially I keep this really annoying popup. I don't remember what app I downloaded that is causing this problem. I clicked on the popup that says "Why am I seeing this?" It says that "the app or webiste you visited uses Facebook Audience Network to show you the most relevant ads". I tried block it by I can't. Can someone help, please? If I delete my facebook account will this solve my problem? I'm tired of having to keep exiting from the popup to get to my apps. I could be in the middle of taking a picture when all of a sudden the app appears. I need some assistance the solve this. How do I get rid of the Popup?

Thank you.

Filter

Back
Top Bottom