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

Retro Void [GAME][FREE]

Poster.png


An exciting adventure soaked in the spirit of the 80s. Test your skills, go through the space and the void, defeat all the bosses and enjoy the amazing retrowave music

Choose a ship to your taste and go on a trip!

In the game you are waiting for:
- 30 ships, among which 12 are unique
- 3 game worlds
- 9 bosses
- Own soundtrack for each level

Get achievements, compete with players from around the world in the leaderboards.

1ebe9f27990aed85a.png
3aa60831bfc277380.png
46061ec771b24b1be.png
63696e62ca44749f4.png

Watch trailer:


Download on Google Play, the game is FREE:
https://play.google.com/store/apps/details?id=com.cybercatstudio.retrovoid

I Have a Working Root for the S7-G930U

Hello all, I am new to this forum and thought I would share a root for V9 G930U Varient. If anyone would like my dump files or the files used drop me a line. Hope to meet some of you and exchange some ideas. Cheers.

Uploading is being a bit of a pest ATM. I'll have more photos and a link to the files soon.


Download USA BOOTLOADER 8&9 Version of S7-SM-G930U ONLY!

https://mega.nz/#!TkEhCSpT!Qpa9zwgt0biybViQw3B3sadt0w-cr5DampqLWoFIx4A

Attachments

  • Screenshot_20190627-223505_Root Check.jpg
    Screenshot_20190627-223505_Root Check.jpg
    286.2 KB · Views: 324
  • Screenshot_20190627-223419_Root Check.jpg
    Screenshot_20190627-223419_Root Check.jpg
    271.6 KB · Views: 264
  • Screenshot_20190627-223426_Root Check.jpg
    Screenshot_20190627-223426_Root Check.jpg
    252.7 KB · Views: 272

Testing Android app on notch devices emulators

Hello,

Greetings !!!

I am new to this technology and i am a learner. we have an android mobile app that needs to be tested on android devices to check if there are any design issues. We have tested the app using the android emulators provided by "Android Studio". We need to test the same application in the Notch devices also. But in android studio, notch type devices are not available for us to test the application

Can you please suggest on how a notch device emulator can be created and tested?

Thanks and Regards
A.K.Srinivas

[ROM]-v7.1 GamerROM®11 Remastered For Samsung GALAXY S4 jfltetmo COMING SOON!

Welcome to:

GamerROM®11
For Samsung GALAXY S4 (jfltetmo)

Features:

New features such as a New Task Manager app.

• Classsic Build but sleek and fast

• Includes Nexus 6P opimtizations baked.

• NO GAPPS Installed so you dont gave to worry about updating the apps we bake in just install our modified apps.

• LineageOS built snd much more.


NOTICE: This build is a build from 2015 we compiled for GamerROM 11, So some freatures is unavailable or not functioning properly. I don't own the S4 anymore so i cannot see what bugs are present, It's up to you to report the bugs if you FAIL to report them i cannot fix them leaving you helpless and upset why they aren't fixed, so remember not my job to test bugs for you in this OS!

DOWNLOAD: N/A

Date Released: COMING SOON!

Houston, are we go?

Guess what the kid wants now. Be an astronaut for July 20! Well, it is the 50th anniversary of the Moon landing. Who has some costume ideas? I think the most important parts would be the helmet and boots, but how to make them lightweight, breathable and cool? Please forgive me for not posting this in off topic but I actually could not find it. The space where's it's supposed to be is taken up by some ad.

AT&T update removed custom text sound

I have a Motorola Moto Z2 Force - and AT&T pushed an update last night that seems to have broken the custom text notification sound option.

I have a different sound than the default notification sound selected for all texts.

Unfortunately, since this AT&T update the text plays the default notification sound, instead of the different custom sound that is still selected in
Messages | 3 Dots | Settings | Notifications | Sound

I am using Zedge to select the sound, and I have Android 8.0

Please help, thanks.

Help Anyway To Bypass Verizon Highspeed Data Cap Mexico And Canada 512MB Highspeed/Day

So I Am Currently On Vacation In Mexico And There Is No Wifi Near Me, But There Is Signal. Im Currently On Verizon's GoUnlimited Plan Which Gives Unlimited Highspeed Data In The U.S. But In Other Countries You Get Throttled to 600kbps After Using 512Mb That Day. Highspeed Then Comes Back On at Midnight Eastern Standard.

Is There Anyway I Can Have Unlimited High Speed Data While In Mexico With No High Speed Data Cap Per Day On It? I Do Not Have Root

Thanks

Sincerely,

Newbie Aronthekid

No internet connexion with hotspot

Hello,
I have a problem with my LG G6:
-First, the hotspot didn't workerd : it said "Authenticating failed", but I solved the problem with setting data base editor : I input "-1" at the rank "tether entitlement check state"
-But now, when I activate and connect the hotspot to an other device, it says : "Connected, no internet " on the other device.
I tried to reset the network settings and after, my phone, but it didn't change anything.
Could somebody please help me?
(The hotspot works when I put my Sim in an other phone)

Blue Tooth Paired devices disappear

Every now and then, all paired blue tooth devices seem to get cleared out. I have this phone paired with my F150 pickup. The phone seems to stay paired if I use the truck every day, but if I don't use it for 2 or 3 days, it deletes the paired device. Prior to this phone I had a Samsung J7. When I bought the truck in 2017, it got paired and never needed to pair it again. Even if I didn't drive for a full week. I had this new A6 for 3 months and I have had to re-pair it 5 or 6 times.

Does anybody have any ideas on what causes this ?

How to keep app running in background with screen off

I have an app that works great while the screen is on, but as soon as the screen is off it start slowing down until eventually in a couple of minutes is off. I notice that the mainActivity in the android studio tester stops if I turn the screen off, as soon as I turn it on the screen the main activity goes live again and the app works fine again. I have tried BATTERY_OPTIMIZATIONS, DATA_RESTRICTIONS, but it doesn't seems to work. can anybody help me on how to keep the mainActivity from stopping while the screen is off?

I have read about foreground service and tried too but I dont seem to find any service that works with web view

thanks. Attach is a pic of the main activity stooping in the android studio test environment, the green part is the app with the screen on

this is the code that I am using

public class MainActivity extends AppCompatActivity {
private WebView webView;

@override


protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

webView = findViewById(R.id.wb);




WebView webview = new WebView (this);
setContentView(webview);
webview.loadUrl("http://www.apple.com");
webview.getSettings().setJavaScriptEnabled(true);


}

public void startService(View v){
String input = webView.getUrl().toString();

Intent serviceIntent = new Intent(this, RunService.class);
serviceIntent.putExtra("inputExtra", input);

startService(serviceIntent);
}
}

Attachments

  • mainactivity.PNG
    mainactivity.PNG
    11.2 KB · Views: 279

Installing Google Play via Android Studio (while rooted)

Hi guys,

I have been going through hell and back over the last week trying to get Google Play installed on Android Studio. Of course there are images that come with Google Play pre-installed, but I cannot root those images using adb root.

Therefore, I have installed an Android image in Android Studio that supports Google APIs and have been trying to manually push OpenGApps onto the image. This has been a nightmare. I finally got it to work and now a few days later Google Play is no longer installed and the Pixel Launcher just keeps crashing.

Here's what I've tried thus far:

I ran into an installer that someone wrote in bash over here https://gist.github.com/cunneen/1c0d9717f8ce5ea76900ba32fa037047 and tried to replicate the results manually. Last week, things were fine. However, today, I have tried repeating the process since Google Play decided to uninstall itself.

Here's the error that I'm running into along the process:

Code:
[myuser@mbp.local:...x86-9.0-stock-20190618/Core]$ "${ANDROID_HOME}/emulator/bin64/e2fsck" -f "${HOME}/.android/avd/${AVD}.avd/system.img"                  8:11AM/06.27
e2fsck 1.42.13 (17-May-2015)
ext2fs_open2: Bad magic number in super-block
/Users/myuser/Library/Android/sdk/emulator/bin64/e2fsck: Superblock invalid, trying backup blocks...
/Users/myuser/Library/Android/sdk/emulator/bin64/e2fsck: Bad magic number in super-block while trying to open /Users/myuser/.android/avd/Pixel_2_API_28.avd/system.img

The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem.  If the device is valid and it really contains an ext2/ext3/ext4
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 <device>
or
    e2fsck -b 32768 <device>

This seems to be the only hiccup that I've encountered now when trying to re-install Google Play onto this Android image. I have tried the previous step, which is to copy the Android system image from $ANDROID_HOME/system-images/android-28/google_apis/x86/system.img to replace the system.img in the AVD folder, but I still get this error.

Has anyone been able to successfully accomplish this, or is this not even possible? It seems that when I ask this question on StackOverflow, there's crickets... as if no one ever does this or something.

Filter

Back
Top Bottom