Skip to main content

Posts

Showing posts from 2017

Google Map v2 signed map isssue fixed

Hi Step 1: Develop Map Application  using android studio Step 2: For Map viewing we need to have google api key .in order to get api key we need to register application in google api console  https://console.developers.google.com/apis/ Step 3; For getting SHA1 Key please follow the steps            1) Go the java installed folder location , open cmd                 Eg: C:\Program Files\Java\jdk1.7.0_04\bin            2)  Type                   Windows keytool -list -v -keystore "CHANGE WITH OUR KEYSTORE LOC" -alias ALIASNAME -storepass PASSWORD -keypass PASSWORD                   Mac & Linux  keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android Ref:  http://www.truiton.com/2015/04/obtaining-sha1...

Multiple apk based on Flavours in Android Studio

Step 1. Create Android Studio Project Step 2. Go to the build.gradle file in the app module then add Flavours in that file productFlavors { demo { applicationIdSuffix ".demo" resValue "string" , "app_name" , "Demo App" } full { applicationIdSuffix ".full" resValue "string" , "app_name" , "Full App" } } after changes sync gradle ,their will be option Build Variants their we can switch demo / full application build Full Source code of build.gradle apply plugin : 'com.android.application' android { compileSdkVersion 25 buildToolsVersion "25.0.2" defaultConfig { // applicationId "com.example.nithin.flavoursample" // minSdkVersion 14 // targetSdkVersion 25 // versionCode 1 // versionName "1.0" // testInstrumentationRun...