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

Transfering game datanfrom iphone

Hello people, so after years of being a iphone fan boy, i made then switch. At the store i trasnsfered my contacts, pics etc, but i dont thinknabout game data. I have a few games on my iphone that i would like to get on my galaxy. I dont have the old iphone anymore, so my qiestion is, is there any way i can still get my game data? Thru pc, itunes or something? Thnxs.

App Icon Not Appearing

Hi all.

We've been developing a new app but when we sideload or use early access the app icon does not show up anywhere on phone.

For the early access/alpha testing I installed via play store website. The app shows up in Play Store when I enter name and it's available on Settings -> App & notifications -> App info. But I cannot launch it from Play Store or settings and the icon does not appear anywhere on my phone? The Play Store website also says the app is installed.

So it's installing but I cannot find and/or launch it

Samsung Pay is the worst feature on any Samsung Device

It seems.that their is no point in using this app because you basically can't purchase any shit with your debit card or your paypal debit card like seriously they can't even try to verify my card simply because they appearently need money in it even though I do have money in it so I just say screw this app I bought Samsung Package Disabler pro for my note 10+ and disabled that dumb thing because i don't know why we need that app anyways!

Which phone?

S10 PLUS

ONE PLUS 7 PRO (I HAVE ATT SO THEY DONT CARRY IT UNLESS I PAY MORE TO BUY UNLOCKED VERSION)

IPHONE 8 PLUS

THESE ARE MY THREE CHOICES.

REASON I LIKE THEM

S10PLUS- GREAT FEATURES,CAMERA IS GREAT
ONLY THING I HATE IS THEY DONT UPDATE SOFTWARE OFTEN

ONEPLUS
HEARD ITS GRRAT PHONE WITH THE WARP CHARGER
HEARD THE CAMERA IS AMAZING
AND THEY CONSTANTLY DO UPDATES

IPHONE 8 PLUS
I LOVED THIS PHONE WHEN I HAD IT
ITS FAST HAS GREAT CAMERA AND IPHONES ALWAYS DO UPDATES

[Game] Powerballs: Treasure Hunt

Powerballs: Treasure hunt - arcade game with puzzle elements

Intro:

In a land far, far away in the east beyond the high mountains and blue hills in a dwarfs realm extends the treasure caves…
These caves are so deep that no ray of sunshine reaches there. In the center of each cave the magic column rises and the one who can cope with the power that is hidden in the column will find unthinkable treasures ...

Game play:

The player sees a luminous column in front of him. Balls with different colors rotates on the side surface the column. The main gameplay is to shoot the column balls with cannonball of relevant color. If the colors matches the ball is charging. Once all the balls are charged, the player can proceed to the next level.
At each level, the player gets a certain number of cannonballs. One for each ball. Also for one gaming session (till complete losing) several additional cannonballs are given. If player spend additional cannonballs they will be restored after some period of time.
By hitting the balls, the player gets points for the leaderboard and experience to raise the player level. Also, the player may receive gold or gems from some balls.
When player hit in an already charged ball, it is discharged. When hit in a ball whose color does not match the color of the cannonball, the player loses the cannonball. If the last additional cannonball is spent, the game starts from the first level. Accumulated gems, gold and experience are not lost.
The player can combine gems and set them in active slots. By combining various gems in active slots, the player must find a combination of them that will make it possible to simplify the gameplay at the current level as much as possible and score maximum points for the leaderboard

Features:

• Unique gameplay
• Simple but colorful 3d graphics
• The ability to continue the game on another device with the same Google Play account
• Free to play
• Available for many phones and tablets
• Suitable for the whole family and almost any age.

https://play.google.com/store/apps/details?id=com.neposeda.powerballs

Charging Problem

I have a Moto E4. When I plug it in to charge, the charging indicator on the bottom of my lock screen will spam the word "Charging" making me think that there is not a constant flow of power. Even when I get it to stay "Charging" it charges very slow. I have tried five different cords and wall plugs so I don't think that is the problem. Anyone got any solutions?

ANDROID STUDIO TELNET DISCONNECT PROBLEM

Hi, my code do the telnet socket disconnection ok, however only after clicking send button, it seems onclick send button calls the disconnect routine.
Follow below the code.

public class MainActivity extends AppCompatActivity {

String host="192.168.0.100",mensaje;
int port=23;

private final String TAG = getClass().getSimpleName();
private Toast fastToast;

// AsyncTask object that manages the connection in a separate thread
WiFiSocketTask wifiTask = null;

// UI elements

EditText editSend;
Button buttonSend;
ToggleButton condesc;
private static TextView inputStreamTextView;
private static TextView outputStreamTextView;

@override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); //orientacion horizontal
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN); //deshabilita teclado al iniciar aplicacion


inputStreamTextView = (TextView) findViewById(R.id.inputStreamTextView);
inputStreamTextView.setMovementMethod(new ScrollingMovementMethod());
outputStreamTextView = (TextView)findViewById(R.id.outputStreamTextView);
outputStreamTextView.setMovementMethod(new ScrollingMovementMethod());
editSend = (EditText)findViewById(R.id.editSend);
buttonSend = (Button)findViewById(R.id.buttonSend);
condesc = (ToggleButton)findViewById(R.id.condesc);

fastToast = Toast.makeText(this,"", Toast.LENGTH_SHORT);
}


void toastFast(String str) {

fastToast.setText(str);
fastToast.show();
}



/**
* Helper function, print a status to both the UI and program log.
*/
void setStatus(String s) {
Log.v(TAG, s);

//textStatus.setText(s);
}



public void ToggleButtonConectOnClick(View view){


if(condesc.isChecked()){
conectar();
}else{
desconectar();
}

}



/**
* Try to start a connection with the specified remote host.
*/
public void conectar() {

if(wifiTask != null) {
setStatus("ya esta Conectado!");
toastFast("ya esta Conectado!");
return;
}

try {
// Get the remote host from the UI and start the thread
/// String host = editTextAddress.getText().toString();
// int port = Integer.parseInt(editTextPort.getText().toString());

// Start the asyncronous task thread
setStatus("Conectando...");
wifiTask = new WiFiSocketTask(host, port);
wifiTask.execute();

} catch (Exception e) {
e.printStackTrace();
setStatus("Puerto o direccion invalidas!");
toastFast("Puerto o direccion invalidas!");
}
}

/**
* Disconnect from the connection.
*/
public void desconectar() {

if(wifiTask == null) {
setStatus("Desconectado!");
toastFast("Desconectado!");
return;
}

wifiTask.disconnect();
setStatus("Desconectando...");
toastFast("Desconectando...");
}

/**
* Invoked by the AsyncTask when the connection is successfully established.
*/
private void connected() {
setStatus("Conectado.");
toastFast("Conectado.");
buttonSend.setEnabled(true);
}

/**
* Invoked by the AsyncTask when the connection ends..
*/
private void disconnected() {
setStatus("Desconectado.");
toastFast("Desconectado.");
//buttonSend.setEnabled(false);
// inputStream.setText("");

// textTX.setText("");
wifiTask = null;
}


private void colorea(){

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
inputStreamTextView.append(Html.fromHtml(mensaje,Html.FROM_HTML_MODE_LEGACY));
} else {
inputStreamTextView.append(Html.fromHtml(mensaje));
}
inputStreamTextView.append(""+'\n');

}

/**
* Invocado AsyncTask cuando se recibe una nueva linea.
*/
private void gotMessage(String msg) {

inputStreamTextView.append(msg+'\n');
Log.v(TAG, "[RX] "+msg);
}

/**
* Send the message typed in the input field using the AsyncTask.
*/
@SuppressLint("ResourceAsColor")
public void sendButtonPressed(View v) {

if(wifiTask == null) return;
String msg = editSend.getText().toString();
if(msg.length() == 0) return;
wifiTask.sendMessage(msg);
outputStreamTextView.append(msg+'\n');

mensaje="<font color=#0000FF>Sent --> </font>"+msg; //colorear en azul
colorea();;
Log.v(TAG, "[TX] " );
}

/**
* AsyncTask that connects to a remote host over WiFi and reads/writes the connection
* using a socket. The read loop of the AsyncTask happens in a separate thread, so the
* main UI thread is not blocked. However, the AsyncTask has a way of sending data back
* to the UI thread. Under the hood, it is using Threads and Handlers.
*/
public class WiFiSocketTask extends AsyncTask<Void, String, Void> {

// Location of the remote host
String address;
int port;

// Special messages denoting connection status
private static final String PING_MSG = "SOCKET_PING";
private static final String CONNECTED_MSG = "SOCKET_CONNECTED";
private static final String DISCONNECTED_MSG = "SOCKET_DISCONNECTED";

Socket socket = null;
BufferedReader inStream = null;
OutputStream outStream = null;

// Signal to disconnect from the socket
private boolean disconnectSignal = false;

// Socket timeout - close if no messages received (ms)
private int timeout = 5000;

// Constructor
WiFiSocketTask(String address, int port) {
this.address = address;
this.port = port;
}

/**
* Main method of AsyncTask, opens a socket and continuously reads from it
*/
@override
protected Void doInBackground(Void... arg) {
try {
// Open the socket and connect to it
socket = new Socket();
socket.connect(new InetSocketAddress(address, port), timeout);
// Get the input and output streams
inStream = new BufferedReader(new InputStreamReader(socket.getInputStream()));
outStream = socket.getOutputStream();

// Confirm that the socket opened
if(socket.isConnected()) {
// Make sure the input stream becomes ready, or timeout
long start = System.currentTimeMillis();
while(!inStream.ready()) {
long now = System.currentTimeMillis();
if(now - start > timeout) {
Log.e(TAG, "Input stream timeout, disconnecting!");
disconnectSignal = true;
break;
}
}
} else {
Log.e(TAG, "Socket did not connect!");
disconnectSignal = true;
}

// Read messages in a loop until disconnected
while(!disconnectSignal) {
// Parse a message with a newline character
String msg = inStream.readLine();
// Send it to the UI thread
publishProgress(msg);
}

} catch (Exception e) {
e.printStackTrace();
Log.e(TAG, "Error in socket thread!");
}

// Send a disconnect message
publishProgress(DISCONNECTED_MSG);

// Once disconnected, try to close the streams
try {
if (socket != null) socket.close();
if (inStream != null) inStream.close();
if (outStream != null) outStream.close();
} catch (Exception e) {
e.printStackTrace();
}

return null;
}

/**
* This function runs in the UI thread but receives data from the
* doInBackground() function running in a separate thread when
* publishProgress() is called.
*/
@override
protected void onProgressUpdate(String... values) {
String msg = values[0];
if(msg == null) return;
// Handle meta-messages
if(msg.equals(CONNECTED_MSG)) {
connected();
} else if(msg.equals(DISCONNECTED_MSG))
disconnected();
else if(msg.equals(PING_MSG))
{}

// Invoke the gotMessage callback for all other messages
else
gotMessage(msg);
super.onProgressUpdate(values);
}


/**
* Write a message to the connection. Runs in UI thread.
*/
public void sendMessage(String data) {
try {
outStream.write(data.getBytes());
outStream.write(0x0d);
outStream.write(0x0a);
} catch (Exception e) {
e.printStackTrace();
}
}

/**
* Set a flag to disconnect from the socket.
*/
public void disconnect() {
disconnectSignal = true;
}
}

T-Mobile (USA) update 9.0.14

A new Android 9 update, 9.0.14, for the T-Mobile (USA) carrier minority variant of the OnePlus 6T has begun rolling out.

MFz3newl.jpg


Android Security patch = August 2019

Camera version is yet again the same old 2.9.43
(You can update to the most recent global camera version 3.0.43)

This is the 9th T-Mobile (USA) update in 346 days

(N.B. This update is only for the T-Mobile (USA) minority carrier variant and NOT the global OnePlus 6T model)
See, also...

T-Mobile 6T to Global model Conversion (WITHOUT unlocked bootloader/SIM unlock!)

How do i shut of this new feature?

I updated to latest version and now my games dim down and lock after s3 minutes, how do i turn of that function? Note that this is not the normal timeout/sleep mode that completely shut of the monitor, it is something new irritating they added. My timeout sleep timer is set on 15 seconds and it completely shut of my screen after 15 seconds when i'm not in a game.
KIuoHxr.jpg

Help How do I turn off the microphone high-pass filter for more bass pick-up?

I've got an LG Phoenix 4 running Android 8.1 (AT&T prepaid, used as tablet only for now).

The mic seems to cut off bass around 100 Hz and I can't find a way (in main Android settings) to allow its full range.
I've also tried various recording apps looking for a setting but so far no luck.

In my old Nokia (Windows) phones there was an obvious setting to turn off the bass-cut feature, and I'd rather have maximum realism in recordings than cut out rumble.

Thanks for any tips if it's doable in Android.

Podcasts - What the..

Right, I have played loads of podcasts.. like erm 1 when iPods first came out and I was not impressed so never went back.

But right now, all I hear about are podcasts. So what am I missing, educate me! How do I play em? Best player on the store? (Paid, no ads or free to use). Do you subscribe to them, pay for them?? Download them for offline playback? I guess you can live stream too.. Do they now have music in them as I seem to remember back in the day that was not allowed.

Recommend your favourite podcasts..

Help Earphone jack problem

My earphone jack works but a piece of it got broken inside somehow so I either have to hold my earphones in the whole time or superglue it to whatever phone case I'm currently using which ruins the case and the earphones. I'm not sure what else to do but I cant afford a new phone.

I'd definitely trade it for an older phone if I had too though.

Filter

Back
Top Bottom