I have a web app which made with Ruby on Rails and enabled Turbolinks 5 but currently, I need to make a native Android app which actually designed by Basecamp.
On their GitHub repository have step by step setup I'm following this steps because here (google) is not enough help for turbolinks-android
based on their tutorial I'm setup but not loading any content like
#=> If I use Basecamp URL
private static final String BASE_URL = "https://basecamp.com";
Not changing anything always showing blank screen
#=> My local project
private static final String BASE_URL = "http://localhost:3000";
Also same not changing anything showing blank screen
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.basecamp.turbolinks.TurbolinksView
android:id="@+id/turbolinks_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
MainActivity.java
import com.basecamp.turbolinks.TurbolinksSession;
import com.basecamp.turbolinks.TurbolinksAdapter;
import com.basecamp.turbolinks.TurbolinksView;
All are same as their documentation
Appreciate if any help
Thanks