Is it possible to place the HERE logo in the MapviewLiteView to another place instead of the lower right?
HERE SDK lite for Android doesn't offer class for LogoPosition changes. However premium does.
For more details please refer the different positions premium allow :
https://developer.here.com/documentation/android-starter/api_reference_java/com/here/android/mpa/common/CopyrightLogoPosition.html
Not right now, but I have checked with the team and this feature will be available with the next release.
Related
Is there a way to serve an experiment (via Google Tag Manager) to only a specific SDK level and above users of my Android app?
For e.g. only Lollipop and greater devices should be part of the experiment and in that subset only 50% of users should see a change and the other 50% should not?
I have a pretty basic knowledge of GTM and have used it to set variables to control visbility of buttons etc. but am not too familiar with how to check for SDK version in GTM when sending a value to users? Any help would be much appreciated.
TIA
In GTM you can activate Built-In variables, one of those are OS version and SDK version as you can see on screenshot below (SDK version is at the bottom of the list):
You can use them to create your trigger for specific OS version & SDK version as you want:
As for 50/50 testing, there is no built-in functionality in GTM as far as I know. If you can only use GTM interface maybe you can do a workaround and use GTM's random number Variable to use as 50/50 chance trigger?
[Disclaimer: I have never done this before, but I would try this. It will not give you exact 50/50 split] If you go to Vairiables -> User-Defined Variables -> New -> Choose variable type you should see Random Number under "Utilities". If you save it as custom variable you should be able to use in your trigger for example:
(the number is half of the Random number limit)
I am trying to update an application in my developer Console , but this is the error I am getting when trying to publish it after uploading the apk.
The application could not be saved. Please check the form for errors.
I had the same problem and figured out what I should do. If you click Save as Draft it will take you back and show you the error. In my case it was the target SDK version being lower than what was in the previous version of the app.
I had to add a Privacy Policy before I could Unpublish my app.
(That is under Store presence > Store listing, at the bottom)
I found that in the first instance because in the menu it highlighted everything it wanted me to look at (however that was only for the first app, I needed to update 6 but after I followed those menu indicators for the first one they disappeared, even though all my apps needed a privacy policy).
I had the same issue with one outdated app and that helped me was to fill all new required field for the app, e.g. featured graphics, ratings. After that, it was possible to update the app
I was facing the same issue, then I found the solution to this problem. Save your application to draft. Then you will see this error. Move your new version to alpha testing. Now deactivate the current version and move the version in alpha testing to production.
I had the same issue. To solve this issue one must try some of the points below.
Check if all the mandatory fields are filled up
Check if app's terms and condition has a link
Check the distribution page
I hope it works
I faced this issue. I had an existing app. The issue was that I was using a hyphen in the name of the experiment. Apparently, we are not allowed to use it. Hope this helps someone.
I want to make one main APK which has menu inside it that linked to other APK so that I can update each sub-APK independently. And I also want so that when each menu clicked first it will check whether the sub-APK we have is already updated to the latest version or not (note that this is only for private use application). Thanks before :)
This is exactly what you want
https://play.google.com/store/apps/details?id=com.inappsquared.devappsdirect
The app used to be open source. I'm not sure what happened to the link to their repository. Now it seems they turned it into a commercial product.
http://www.inappsquared.com/devappsdirect.html
I want to know if I can develop an application that users touch the screen and their fingerprint are registered. If it is possible, is there any library to store and retrieve and detect finger prints?
This is not possible, current consumer touch screens cannot 'see' with that level of detail. You might have more luck using the camera but I don't know of any projects that have done this before.
Please check below link:
http://www.diamondfortress.com/sdk
Paid SDK but we can use it with trial
Looks like it is now part of Android 6.0.
i do not think that exists yet.
http://www.talkandroid.com/51754-fingerprint-scanner-sdk-available-for-android-courtesy-of-xda/
Came across this http://www.diamondfortress.com/sdk. It's a paid SDK and it uses camera. But I have not personally tried it out.
In this linked image , I see the button on the right quite often in a lot of apps. On my Moto Droid, it is used extensively in the settings app. It is also used as the default AlertDialog icon. Can I use this via a android.r.drawable?
The icon is built-in with the Android development, you can access the image by using R.drawable.ic_dialog_menu_generic
While it may be possible to use it via android.R.drawable, you may want to find the image in the resources that come with your SDK ($ANDROID_HOME/platforms/$VERSION/data/res, where $ANDROID_HOME is where you have the SDK installed and $VERSION is a relevant Android API level). So, per Mr. Forloney's answer, you'll find that in, say, drawable-hdpi/ic_dialog_menu_generic.png in the aforementioned directory. Then, copy that image into your project. While it will add 5K to your project size, it will mean that the icon does not change based upon OEM or Android changes.