RB
Aspiring developer
Profile
Posts: 150
Reg: Jun 29, 2011
BR
6,150
08/13/12 04:47 AM (13 years ago)

SOLVED - I can´t install apk in tablet with android ICS

I exported an apk from eclipse and installed easily on my phone (galaxy Y s5360) through the file manager. Then put in the same apk in the pend drive and tried to install on my tablet with Android 4.0 (ICS) and in the process end a message appears saying that application was not installed. What could be wrong? Thanks
 
Fred@mySkylla com
Android Fan
Profile
Posts: 5259
Reg: Oct 03, 2011
location unknow...
62,560
like
08/13/12 04:52 AM (13 years ago)
I've installed many app onto my tablet ICS with no problem, so I imagine there's a problem with the .apk or your memory is full, or you did not allow 3rd party apps. Fred
 
RB
Aspiring developer
Profile
Posts: 150
Reg: Jun 29, 2011
BR
6,150
like
08/13/12 05:21 AM (13 years ago)
Have enough space. If the apk was installed on my phone with android 2.3, should not install on a 4.0 normally? If it is because the tablet does not allow third party applications, how can I fix?
 
Fred@mySkylla com
Android Fan
Profile
Posts: 5259
Reg: Oct 03, 2011
location unknow...
62,560
like
08/13/12 06:04 AM (13 years ago)
It should install, no fix required, just go into settings of tablet and allow. Fred
 
RB
Aspiring developer
Profile
Posts: 150
Reg: Jun 29, 2011
BR
6,150
like
08/13/12 06:18 AM (13 years ago)
This option was enabled.
 
RB
Aspiring developer
Profile
Posts: 150
Reg: Jun 29, 2011
BR
6,150
like
08/13/12 08:09 AM (13 years ago)
 
Fred@mySkylla com
Android Fan
Profile
Posts: 5259
Reg: Oct 03, 2011
location unknow...
62,560
like
08/13/12 10:34 AM (13 years ago)
Send .apk
 
RB
Aspiring developer
Profile
Posts: 150
Reg: Jun 29, 2011
BR
6,150
like
08/13/12 10:58 AM (13 years ago)
I also tested the APK from this topic: http://www.buzztouch.com/forum/thread.php?tid=73EF6D73270B584E27317B7&fid=1CB7AB0083F0FC93E182240&sortColumn=FT.id&sortUpDown=DESC&currentPage=1 And not worked too. So the problem is not the APK that I exported. I decided to look for an APK in the Google, out of "Play Store", and it worked perfectly. Maybe something related to Eclipse.
 
RB
Aspiring developer
Profile
Posts: 150
Reg: Jun 29, 2011
BR
6,150
like
08/13/12 12:05 PM (13 years ago)
No problem with Eclipse. I created a simple application (just a text message) and installed on the tablet without any problem.
 
RB
Aspiring developer
Profile
Posts: 150
Reg: Jun 29, 2011
BR
6,150
like
08/13/12 03:49 PM (13 years ago)
Maybe in the manifest created by Buzztouch? Could anyone examine the manifest code? Permissions for example, although I've commented these lines and then tested the apk <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.Animus" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="8"/> <!-- required device permissions --> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- recommneded device features --> <uses-feature android:name="android.hardware.camera" android:required="false"/> <uses-feature android:name="android.hardware.location" android:required="false"/> <uses-feature android:name="android.hardware.location.gps" android:required="false"/> <uses-feature android:name="android.hardware.telephony" android:required="false"/> <application android:name="Animus_appDelegate" android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true" android:theme="@android:style/Theme.NoTitleBar"> <!-- activity root is the default, beginning activity --> <activity android:name="BT_activity_root" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation" android:excludeFromRecents="false" android:noHistory="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <!-- activities for general layout (tabbed or non-tabbed) --> <activity android:name=".BT_activity_base" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_activity_root_tabs" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <!-- remaining activities are for individual plugin types --> <activity android:name=".BT_screen_settingsDevice" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_customHTML" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_pptDoc" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_map" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_settingsLocation" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_menuListSimple" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_htmlDoc" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_excelDoc" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_wordDoc" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_splash" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_pdfDoc" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_customURL" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_blank" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_menuButtons" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_settingsLogIn" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <activity android:name=".BT_screen_quiz" android:label="@string/app_name" android:configChanges="keyboardHidden|orientation"></activity> <!-- THE NEXT LINE IS ONLY USED IF MAPS ARE USED --> <uses-library android:name="com.google.android.maps"/> </application> </manifest>
 
RB
Aspiring developer
Profile
Posts: 150
Reg: Jun 29, 2011
BR
6,150
like
08/13/12 05:27 PM (13 years ago)
After searching a lot, try everything and think too much, I located the problem, finally. To solve it, remove the last line of the manifest (<uses-library android:name="com.google.android.maps" />). I hope this tip be useful for someone (rather than searching a lot, try everything, think to much and waste time as well). Bye topic
 
Fred@mySkylla com
Android Fan
Profile
Posts: 5259
Reg: Oct 03, 2011
location unknow...
62,560
like
08/13/12 06:08 PM (13 years ago)
Are you using Android 2.2 API or Google 2.2 API ? Fred
 

Login + Screen Name Required to Post

pointerLogin to participate so you can start earning points. Once you're logged in (and have a screen name entered in your profile), you can subscribe to topics, follow users, and start learning how to make apps like the pros.