Postingan

Menampilkan postingan dari 2018

Solving app is not indexable by google search consider adding at least one activity with an action-view

Gambar
I am getting following tool tip in   AndroidManifest.xml App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent-filler. See issue explanation for more details. Adds deep links to get your app into the Google index, to get installs and traffic to your app from Google Search. To solving this problem, I just add this intent-filter at AndroidManifest.xml : <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="http" android:host="budi.sunaryo.info" android:pathPrefix="/pesisiran"  /> </intent-filter>  Note:  https://developer.android.com/training/app-links/deep-linking

Solving No IDEA annotations attached to the JDK 1.8

Solving No IDEA annotations attached to the JDK 1.8 (C:\…), some issues will not be found at Android Studio. Just a litte solution and this is work for me. First, quit Android studio. Then, go to  C:\Users\UserName\.android  rename the  build-cache  folder to  build-cache.bak Then, go to  C:\Users\UserName\.AndroidStudio3.2\system  replace the name of these folders caches  to  caches.bak compiler  to  compiler.bak compile-server  to  compile-server.bak conversion to   conversion.bak external_build_system  to  external_build_system.bak frameworks  to  frameworks.bak gradle  to  gradle.bak resource_folder_cache  to  resource_folder_cache.bak After that, open the Android Studio and open your project again.

How to Resolved "Failed to find style 'coordinatorLayoutStyle' in current theme"

Gambar
How to Resolved "Failed to find style 'coordinatorLayoutStyle' in current theme" when you using the latest version of android studio (3.0), along with latest build tools (27) and similar API level. The layout does not get rendered in the design tab and it's causing a lot of trouble especially that when I'm using coordinator layout. How do I get around this problem? To resolved this, I solved this rendering problem by simply inserting this line into the application theme, at style.xml. <style name = "AppTheme.NoActionBar" > < item name = "coordinatorLayoutStyle" >@ style / Widget . Design . CoordinatorLayout </ item > </style>