Android

Could not resolve com.android.support:support-v4:22.0.0, Android Studio

Posted on

While implementing Push Notifications, I get this error Could not resolve all dependencies for configuration I’ve installed Google Play Services and Google Repository using SDK manager and added the following dependencies in gradle file dependencies { compile ‘com.google.android.gms:play-services-gcm:7.0.0’ …. } When I run the app, I see following error, Could not resolve all dependencies for configuration ‘:library:_debugCompile’. […]

Android

Authentication is required. You need to sign in to your Google Account. -Google Play In-App Purchase(IAP)

Posted on

Issue: Google Play In-App Purchase(IAP) While working with Google Play In-App Purchase feature, follows After uploading Trivial Drive app in Alpha Testing, and configuring Store listings and In App products and charges, published app in Google Play Developer Console. While testing the Trivial Driver app, on a device with test account… Im able to Buy Gas […]

Android

com.android.dex.DexException: Multiple dex files define, Android Studio

Posted on

After moving an Eclipse project to Android Studio work space, and build project (Make Project), I see Build successful but when I run the project… I get the following exception, com.android.dex.DexException: Multiple dex files define Error:Execution failed for task ‘:<projectname>:dexDebug’. > com.android.ide.common.internal.LoggedErrorException: Failed to run command: <home>AppDataLocalAndroidsdkbuild-tools21.1.2dx.bat –dex –no-optimize –output <home>AndroidStudioProjects<projectpath>buildintermediatesdexdebug –input-list=<home>AndroidStudioProjects<projectpath>buildintermediatestmpdexdebuginputList.txt Error Code:2 Output: UNEXPECTED […]

Android

Set maxLength of EditText dynamically

Posted on

Set maxLength of EditText dynamically At times you may want to set maxlength of EditText view dynamically. You’ve to use setFilters method of EditText, as shown below. EditText et = new EditText(this); int maxLength = 3; InputFilter[] FilterArray = new InputFilter[1]; FilterArray[0] = new InputFilter.LengthFilter(maxLength); et.setFilters(FilterArray); Hope it helps somebody…Cheers 🙂 You may be also interested in […]