I've made an Android application using Eclipse. It has no errors, good to go, but I wanted to test it on my own phone first. I copied the APK file to my Samsung Galaxy S6 using an USB cable. Unplugged it, made sure the file version is not higher or later than my android version on my phone.
Used an APK installer app, and it's installed. It's at my files, and I can update it how many times I want. After updating, or installing it gives 2 buttons in the button. "Ready" and "Open". "Ready" is the only one clickable, and leaves the page. I can't open the apk-file. I've followed every tutorial but I just can't open it.
This is my Manifest code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.rodekruis"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".BezoekActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.example.rodekruis.BezoekActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".AfspraakActivity"
android:label="@string/title_activity_afspraak" >
</activity>
<activity
android:name=".ContactActivity"
android:label="@string/title_activity_contact" >
</activity>
<activity
android:name=".MeningActivity"
android:label="@string/title_activity_mening" >
</activity>
<activity
android:name=".RouteActivity"
android:label="@string/title_activity_route" >
</activity>
<activity
android:name=".SpecialistenActivity"
android:label="@string/title_activity_specialisten" >
</activity>
<activity
android:name=".BWCActivity"
android:label="@string/title_activity_bwc" >
</activity>
<activity
android:name=".AgendaActivity"
android:label="@string/title_activity_agenda" >
</activity>
<activity
android:name=".InfoActivity"
android:label="@string/title_activity_informatie" >
</activity>
<activity
android:name=".VriendActivity"
android:label="@string/title_activity_vriend" >
</activity>
<activity
android:name=".FoldersActivity"
android:label="@string/title_activity_folders" >
</activity>
<activity
android:name=".NieuwsActivity"
android:label="@string/title_activity_nieuws">
</activity>
</application>
</manifest>
Does anybody knows why this is, or how I can solve it? If I need to add more things, feel free to ask. I'm struggling with this and really want it to work on my phone. Thanks in advance!