I have not been able to start my Android Application on Android Studio 2.2. So I went and look for the Logcat but here's the thing, I do not know where to look for or filter which part as there are just too many things. I really don't think it's my Application but the system that has problems.
I am currently using API 19 as the target sdkversion.
AndroidManifest.xml:`
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.Light">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".CreateAccActivity"
android:label="@string/title_activity_create_acc"
android:theme="@style/Theme.AppCompat.Light" />
<activity
android:name=".LoginActivity"
android:label="@string/title_activity_login"
android:theme="@style/Theme.AppCompat.Light" />
<activity
android:name=".LandingActivity"
android:label="@string/title_activity_landing"
android:theme="@style/Theme.AppCompat.Light" />
<activity
android:name=".SearchActivity"
android:label="@string/title_activity_search"
android:theme="@style/Theme.AppCompat.Light" />
<activity
android:name=".RentEndActivity"
android:label="@string/title_activity_rent_end"
android:theme="@style/Theme.AppCompat.Light" />
<activity
android:name=".RentStartActivity"
android:label="@string/title_activity_rent_start"
android:theme="@style/Theme.AppCompat.Light" />
<activity
android:name=".SearchResultsActivity"
android:label="@string/title_activity_search_results"
android:theme="@style/Theme.AppCompat.Light"></activity>
</application>
`
My compilesdkversion is 25, minimumsdkversion is 16, targetsdkversion is 19 (The one I am using)