Postingan

Menampilkan postingan dengan label programming

Resolve Error of Implementation 'com.android.support:appcompat-v7:28.0.0' when Adding Firebase Connection at Gradle Module App

Gambar
When you get one dependency error at Gradle Module App, because of adding Firebase connection, with library implementation 'com.android.support:appcompat-v7:28.0.0', you can adding this library to resolve it: implementation 'com.android.support:support-v4:28.0.0'

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.

Mengatasi Masalah No Hint Path Define for [datatables] di Laravel 5.4 dan Yajra 7.0

Gambar
Setelah melakukan composer update melalui terminal dan melakukan beberapa perubahan dalam proyek menggunakan Laravel 5.4. Ternyata datatables yajra tidak muncul di view table. Tampilan error atau masalah yang muncul yaitu "no hint path define for [datatables]. Solusi untuk mengatasi ini yaitu dengan membersihkan cache dan mengoptimasi class loader melalui perintah berikut di terminal: $ php artisan cache:clear $ php artisan config:cache $ php artisan optimize budi@sunaryo:~/Documents/laravel/prj/eplanning$ php artisan cache:clear Cache cleared successfully. budi@sunaryo:~/Documents/laravel/prj/eplanning$ php artisan config:cache Configuration cache cleared! Configuration cached successfully! budi@sunaryo:~/Documents/laravel/prj/eplanning$ php artisan optimize Generating optimized class loader The compiled services file has been removed. budi@sunaryo:~/Documents/laravel/prj/eplanning$

Online Programming Challenges on Coderbyte

Gambar
Coderbyte is a web application built to help people practice their programming skills with their collection of programming challenges. The challange range is easy, medium, hard, and advanced. There are three kind of challanges at Coderbyte ; Solved Programming Challanges, Write Algorithms for  Games, and Compete in Competition.