New update avail says 53.1 mb Blur_Version.23.3.24.obake-maxx_verizon.Verizon.en.US.zip for advanced calling. Downloads fine but once I try installing fails. So I found file in cache and copied to my download folder and tried to side load. Fails halfway through and says error with sys/app/galaxy4.apk. Not sure what it was so I deleted it (don't remember installing it but could've) cleared phones cache and tried again still same issues and as far as I can see the apk file isn't there?? Anyone got any ideas?? Rooted 4.4.4 SU5-24 and BL unlocked
Affichage des articles dont le libellé est calling. Afficher tous les articles
Affichage des articles dont le libellé est calling. Afficher tous les articles
How are those making it without Advance Calling topic
Think this only a VZW issue. I have my old Note 3 that I go back and forth between with my N6. If you are a busy person not just playing on the phone really using it for travel with GPS, email with exchange, busy with calls, etc. etc how are you all making it without Advance Calling to handle data and voice at the same time?
For me driving long hours using Google Maps and talking not able to look new address while on call and handle data is a killer...same with long conference calls and needing to send emails while on call or look up data via browser, dropbox, evernotes, etc and daily support stuff I do on my phone. So for time being I switch sims back and forth (have a nano to micro sim adapter) to my Note 3 more on it right now vs N6.
Thoughts?
For me driving long hours using Google Maps and talking not able to look new address while on call and handle data is a killer...same with long conference calls and needing to send emails while on call or look up data via browser, dropbox, evernotes, etc and daily support stuff I do on my phone. So for time being I switch sims back and forth (have a nano to micro sim adapter) to my Note 3 more on it right now vs N6.
Thoughts?
Calling developers to Port Jb/kk/lp to s duos topic
S Duos 3 is released . Our s duos has fair hardware but it does not have any latest Android os . It's still running on the laggy ICS which is almost outdated . We had some kk port attempts but none of it was good (buggy versions ) . I created this thread to wake up every one to make it possible. Now I am calling all developers for doing this . If we can make an open source base rom , then it's better for each developers to mod it and rebrand to their own names . But it is possible only if have a strong base . Anyway I am gonna mention some developers who did already given contributions to s duos .
+ cheatman
+ Mohitash
+ husen4u
+ SilverDragon24
+ abhi922
+ gkostas
+ v_superuser
+ charles1111
I know I missed some of them . But they're also welcomed to make a port .
Regards,
AlfasMP
+ cheatman
+ Mohitash
+ husen4u
+ SilverDragon24
+ abhi922
+ gkostas
+ v_superuser
+ charles1111
I know I missed some of them . But they're also welcomed to make a port .
Regards,
AlfasMP
[Q] IllegalArgumentException when calling method in database topic
Hello everybody. I've tried to make a suitable database for my game that will represent shop stock. The problem is when I call the purchase() method, I got that exception mentioned in the title. The problem is that I need to chceck depending on ID if I need to increment number of purchases or i just unlock the whole item. Here is my code for the database
Code:
public class MonsterTapDatabase extends SQLiteOpenHelper {
static final String dbName = "MonsterTapDb";
static final int version = 1;
static final String tTableName = "Shop";
static final String fItemID = "ItemID";
static final String fItemName = "ItemName";
static final String fItemNumberOfPurchases = "NumberOfPurchases";
static final String fItemIsLocked = "IsItemLocked";
public MonsterTapDatabase(Context context) {
super(context, dbName, null, version);
}
@Override
public void onCreate(SQLiteDatabase sqLiteDatabase) {
sqLiteDatabase.execSQL("CREATE TABLE IF NOT EXISTS "+tTableName+" (" +
fItemID + " INTEGER PRIMARY KEY , " +
fItemName + " TEXT , " +
fItemNumberOfPurchases + " INT, " +
fItemIsLocked + " TEXT" +
")");
ContentValues cv = new ContentValues();
cv.put(fItemID, 1);
cv.put(fItemName, "Lives");
cv.put(fItemNumberOfPurchases, 0);
cv.put(fItemIsLocked, "true");
sqLiteDatabase.insert(tTableName, null, cv);
cv.put(fItemID, 2);
cv.put(fItemName, "Hardmode");
cv.put(fItemNumberOfPurchases, 0);
cv.put(fItemIsLocked, "true");
sqLiteDatabase.insert(tTableName, null, cv);
cv.put(fItemID, 3);
cv.put(fItemName, "Reversed");
cv.put(fItemNumberOfPurchases, 0);
cv.put(fItemIsLocked, "true");
sqLiteDatabase.insert(tTableName, null, cv);
cv.put(fItemID, 4);
cv.put(fItemName, "Reversed Hardmode");
cv.put(fItemNumberOfPurchases, 0);
cv.put(fItemIsLocked, "true");
sqLiteDatabase.insert(tTableName, null, cv);
}
@Override
public void onUpgrade(SQLiteDatabase sqLiteDatabase, int i, int i1) {
sqLiteDatabase.execSQL("DROP TABLE IF EXISTS " + tTableName);
onCreate(sqLiteDatabase);
}
public void purchase(int ID){
if(ID==1){
SQLiteDatabase myDB = this.getReadableDatabase();
String[] mySearch = new String[]{String.valueOf(ID)};
Cursor myCursor = myDB.rawQuery("SELECT "+ fItemNumberOfPurchases +" FROM "+ tTableName +" WHERE "+ fItemID +"=?",mySearch);
myCursor.moveToFirst();
int index = myCursor.getColumnIndex(fItemNumberOfPurchases);
if(index<5){
SQLiteDatabase db = this.getWritableDatabase();
ContentValues cv = new ContentValues();
cv.put(fItemNumberOfPurchases, index);
db.update(tTableName,cv, fItemID, new String[]{String.valueOf(ID)});
}
else{
SQLiteDatabase db = this.getWritableDatabase();
ContentValues cv = new ContentValues();
cv.put(fItemIsLocked, false);
db.update(tTableName,cv, fItemID, new String[]{String.valueOf(ID)});
}
myCursor.close();
}
else{
SQLiteDatabase myDB = this.getWritableDatabase();
ContentValues cv = new ContentValues();
cv.put(fItemIsLocked, false);
cv.put(fItemNumberOfPurchases, 1);
myDB.update(tTableName, cv, fItemID+"=?", new String []{String.valueOf(ID)});
}
}
public String isPurchased(int ID){
SQLiteDatabase myDB = this.getReadableDatabase();
String[] mySearch = new String[]{String.valueOf(ID)};
Cursor myCursor = myDB.rawQuery("SELECT "+ fItemIsLocked +" FROM "+ tTableName +" WHERE "+ fItemID +"=?",mySearch);
myCursor.moveToFirst();
int index = myCursor.getColumnIndex(fItemID);
String myAnswer = myCursor.getString(index);
myCursor.close();
return myAnswer;
}
public int numberOfLives(){
int ID = 1;
SQLiteDatabase myDB = this.getReadableDatabase();
String[] mySearch = new String[]{String.valueOf(ID)};
Cursor myCursor = myDB.rawQuery("SELECT "+ fItemNumberOfPurchases +" FROM "+ tTableName +" WHERE "+ fItemID +"=?",mySearch);
myCursor.moveToFirst();
int index = myCursor.getColumnIndex(fItemNumberOfPurchases);
myCursor.close();
return index;
}
}Advanced calling topic
Does anyone know of any lollipop rom that has advanced calling ported to it? If so, could you send me a link to it? Thanks!!
[Q] Xolo Q800 microphone problem while calling topic
Hi Experts,
I am facing a strange problem in my XOLO Q800 phone.
It was working fine since last 2 years but suddenly facing a issue.
My guess is that it might be microphone issue.
when I make a call I can hear receiver's voice (person receiving my call). But the Receiver cannot hear my voice.
Looks like outgoing audio from my Q800 has some problem. It is not reaching the receiver's end.
Please advice what could be the root cause? How can I resolve this? Is there any solution to fix it?
Please help.
Thanks
Gopal
I am facing a strange problem in my XOLO Q800 phone.
It was working fine since last 2 years but suddenly facing a issue.
My guess is that it might be microphone issue.
when I make a call I can hear receiver's voice (person receiving my call). But the Receiver cannot hear my voice.
Looks like outgoing audio from my Q800 has some problem. It is not reaching the receiver's end.
Please advice what could be the root cause? How can I resolve this? Is there any solution to fix it?
Please help.
Thanks
Gopal
Videos and Calling stuck problem topic
Hello,
I have a very strange problem:
On my galaxy S4 I9505 android version 4.3 if there is a video player available then the app goes stuck, the apps:
- Youtube
- Facebook (app and browser)
- Browser
The videoscreen stays black and the app goes stuck for a while, the video will never play.
The other similair problem if someone call me or if I want to call someone the phone got stuck as well.
I already tried:
- wipe data and cache / factory settings
- wipe full data to install new rom in philz touch recovery
- Install new rom (4.4 and custom 5.0 lollipop)
The problem remains..
Everything else works perfect but this are 2 important thing what needs to work.
Someone have a Idea?
Important to report: I was on custom lollipop and I downgrade it with the downgrade files on this topic because 4.3 has mirrorlink support for my new car.
http://forum.xda-developers.com/show...ight=downgrade
I have a very strange problem:
On my galaxy S4 I9505 android version 4.3 if there is a video player available then the app goes stuck, the apps:
- Youtube
- Facebook (app and browser)
- Browser
The videoscreen stays black and the app goes stuck for a while, the video will never play.
The other similair problem if someone call me or if I want to call someone the phone got stuck as well.
I already tried:
- wipe data and cache / factory settings
- wipe full data to install new rom in philz touch recovery
- Install new rom (4.4 and custom 5.0 lollipop)
The problem remains..
Everything else works perfect but this are 2 important thing what needs to work.
Someone have a Idea?
Important to report: I was on custom lollipop and I downgrade it with the downgrade files on this topic because 4.3 has mirrorlink support for my new car.
http://forum.xda-developers.com/show...ight=downgrade
[Q] Terrible sound when calling or been called, how to solve? topic
Dear user,
i have a problem , when i'm calling or be called they understand me verry bad.
any idee how to solve this.
sorry for bad english
i have a problem , when i'm calling or be called they understand me verry bad.
any idee how to solve this.
sorry for bad english
[Q] Calling with blackscreen. topic
Hello i'm new here but i got a small problem and i want know if us can help me.
I'll try explain that cuz my english so bad.
I got a samsung S3 i9300 and installed a custom rom cyanogem 10.2.0 - stable.
but...
When I make a call the screen goes black, I shield and speak without calling problems that ends the call back normal screen.
any1 already sloved it?
any1 already see that?
any1 can help me?
I'll try explain that cuz my english so bad.
I got a samsung S3 i9300 and installed a custom rom cyanogem 10.2.0 - stable.
but...
When I make a call the screen goes black, I shield and speak without calling problems that ends the call back normal screen.
any1 already sloved it?
any1 already see that?
any1 can help me?
WiFi Calling "REG99 Unable to Connect" error and Other Question Regarding Handoff topic
I'm getting the WiFi Calling "REG99 Unable to Connect" error when my Note 4 connects to my Home Wireless Router. I use Verizon FiOS at home and have the Quantum Gateway Router. I have the wireless functionality disabled on the FiOS Router and enabled on my Netgear Nighthawk. Can this be why I'm getting the error?
Also, how has your experience with the handoff feature in WiFi calling?
Also, how has your experience with the handoff feature in WiFi calling?
Lg g3 voideo calling through network inquiry topic
Hi how coiuld i make a video call ?
Sent from my LG-D855
Sent from my LG-D855
Inscription à :
Articles (Atom)