Hot answers tagged google-play
4
Take a look at the PagerSlidingTabStrip library.
Not sure about the app size increase, but if this is critical for you remember to use Proguard.
3
Don't use the maxSdkVersion attribute:
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
Any device with version > 16 will not show the app, f.e. devices running Android 4.2 (version 17).
Also, since you're requesting the android.permission.CALL_PHONE permission, the app will only be shown to devices that have phone ...
2
You can place the open source licenses under your apps Settings > About App > Open Source Licenses, or something similar. This is what gmail does.
2
Google Play is not part of AOSP Android. Instead, it is part of the GAPPS (Google Apps) package, which you receive after Google has certified your version of Android to be compatible with that version's CTS.
You can get unofficial ZIPs of the GAPPS from forums like XDA and flash them using a custom recovery like ClockwordMod though. The instructions for ...
2
There is no direct way to do it from google. You will be having 2 test-cases:-
Existing user
New user
You have to store unique user-id on your server and when you implement your in-App in application send this user-id to your server.
Case 1:-
Your server will match it with existing DB if it matches the id return you success message.
Case 2:-
For new ...
2
We are developing an open-source tool for automating deploying an app to Google Play:
https://github.com/onepf/AppDF/tree/master/tools/uploader
You can check its code that does exactly what you need by encapsulating a webkit control and working with it.
1
If your app has licensing enabled, you can add the people who should get it for free in a "whitelist" with their google play account , so that the app would appear as bought from the market. (i know it is possible but never did it... just google it)
After that you can distribute the apk through email (try http://thebetafamily.com/supersend/ )
and for the ...
1
This means your developed app, which you can upload to play store, is more secure from cracking it if you use a signature verficiation on a remote server. Almost every app can be decompiled, but if you store your verification process on a remote server, a cracker must get this too. He can not see it directly in the reverse enginneered source.
There are many ...
1
Use the Android Support Library provided by Google. You can download it through the SDK manager. It requires a few changes to existing code (like using getSupportFragmentManager() instead of getFragmentManager(), but it works just fine.
1
You can add this to your manifest:
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />
However this:
Your APK needs to meet the following criteria: Uses available screen space on 7" tablets.
...
1
A few days ago I had to test the play store update mechanics for my company. My summarized results lead to following conditions for an play store update:
The package name of both apps has to be the same.
To be able to update an apk (doesn't matter the update source) both apk's signatures need to match.
The android:versionCode of the market apk needs to be ...
1
Could I install both the apps in the device?
No. If you have the same package name, it will try to replace the already existing app, provided both the apps are signed with the same Keys.
When installing the market app, will it show me replace your old
application?
No, if you have used the same key to sign your app. If you have used different ...
1
Here is how you could partially accomplish what you desire, without the use of a server:
Update your app with a new version that will write a unique value to SharedPreferences. This value should be a hash of an ID that is unique to the device (or at least, that not many other devices would share). The reason that the value should be relatively unique is ...
1
Starting on May '13 Google Play Developer Console lets you test your app with groups of users through alpha- and beta-testing and staged rollouts feature. You need to:
Select an APK for your alpha or beta test.
Select the group of users for each test.
Publish your alpha- or beta-test APK.
Ask your testers to opt in.
The alpha/beta testers must be part ...
1
It could be a number of things depending on what changed in your update. Has anyone posted any sort of log, or did it happen on your device for you to log? Since it isn't happening on everyone's device it is going to be a tough call just from my minimal experience. Is it possible that the 20% of the people not having the issue had a later version than the ...
1
That's because some phone may or may not have some features that you have defined essential..
like for example:- android.hardware.camera.front
So try adding like this...,
<uses-feature android:name="android.hardware.camera.front" android:required="false" />
Check out this link for clarity
1
Yes thats perfect.
Typically, you would release the first version of your application
with versionCode set to 1, then monotonically increase the value with
each release, regardless whether the release constitutes a major or
minor release. This means that the android:versionCode value does not
necessarily have a strong resemblance to the ...
1
Yes that's correct.
The versionCode needs to increment but the versionName can be any string to be shown to your users.
See docs for fuller explanation: http://developer.android.com/tools/publishing/versioning.html
1
You may be having the same issue as is mentioned here:
Android Market: "This item is not compatible with your device."
In a nutshell, for 10 inch tablets, like the Samsung Galaxy Tab, you also have to set xlargeScreens to true.
It does appear, as was just mentioned in this discussion by Key, that Google Play recently implemented stricter ...
1
The Google Play Services APK is only available from the Google Play Store and doesn't support installation on devices without the store app, see http://developer.android.com/google/play-services/index.html
Depending on what kind of functionality you use from the Google Play Service APK you would need to use a 3rd party API or implement it yourself.
1
Solution:
you have to create number of product_id for number of album.and rest of the flow will same.
For testing,you can make testing account and if you don't wish to create testing account,you can use android.test.purchased id for testing
Sample application of in-app v3 is already provided with your android-sdk,please look at Download the Sample ...
1
A GCM Registration id is unique to an android login & the device. If a user signs in to 2 devices using the same login, they will have different GCM Ids. Found the below from this link
An ID issued by the GCM servers to the Android application that allows it to receive messages. Once the Android application has the registration ID, it sends it to the ...
1
The problem was with the .obb file. After a lot of browsing and trials I found that actual reason for this Exception.
What I was doing:
Create a zip file by clicking the folder with videos (Via Compress
option when you right click on the folder in Ubuntu)
Rename the .zip file to
.obb
Push this obb file to
mnt/sdcard/Android/obb/package_name_folder
...
1
There is no API or service by when you can check with Google Play what the latest version of your app is.
Instead, you should maintain the latest version code on your server, and have your app check it periodically against its own version code. If the version code is higher on the server, then your app needs to be updated and you can tell the user ...
1
Excluded is not the same as "not available."
You can choose specific devices and manually force them to be excluded, but they DO have to be compatible with your app, anyway.
If your app is only for large devices, for instance, all non-large devices won't see yout app in Play at all. You can choose some large devices, though, and exclude them, so they also ...
1
Your stack trace tells you which line had the null pointer:
Caused by: java.lang.NullPointerException
at sxa.sexolia.espanolasguapas.MainActivity.onCreate(MainActivity.java:119)
Your issue is on line 119 of MainActivity.java.
Make sure you look at the code you used when you released the product - it's possible your development branch has changed since ...
1
No you cannot do that for Android app.
I would suggest you that for ios app you should set the availability of your app after approval to your discretion. As soon as you receive the mail from apple that your app is approved you can upload the Android app on Google Play.
Now it takes a few hours for your app to show updated version in Google play, so you ...
1
Yes it's possible. I've done it.
Details can be found here: http://phandroid.com/2012/06/21/getting-acquired-how-to-transfer-ownership-of-your-android-app-or-game/
The problem is not transferring an app to another account (and it doesn't matter if that's between two of your own accounts or between two different persons's or company's accounts), that's a ...
1
This should give you the right information:
PackageManager pm = getPackageManager();
String installationSource = pm.getInstallerPackageName(getPackageName());
A result com.google.android.feedback indicates, that the app was installed using Google Play.
Hope this helps ... Cheers!
p.s. this related link looks quite interesting
Only top voted, non community-wiki answers of a minimum length are eligible



