|
"adt-bundle-windows-x86-20140702+jre.rar":
https://stackoverflow.com/questions/27449206/what-is-the-final-version-of-the-adt-bundle
https://github.com/khaledev/ADT
https://docs.google.com/file/d/0B5JTI8WeLk_dZWs0YzVja1R3U3c/edit?resourcekey=0-I_jJHy9V8ZXPrLua5wZFEQ
https://github.com/zyunx/notes-android
Just uploaded updated "adt adt-bundle-windows-x86-20140702+jre.rar"
to https://sourceforge.net/projects/freeportablesprograms/files/Programming/
Start adt-bundle-windows-x86-20140702\eclipse\eclipse.exe
You shouldn't even start as administrator which is great.
Just choose an workspace;
Creating an project:
Choose File-> New Android Project
Enter project name, the package name shouldn't be "example" in "Package name" textbox you could enter for example com.test.testing as "Package name",
Minimum Required SDK:
API 12 - doesn't work
Api 13 - doesn't work
Api14/Api15/Api17/Api18 - work ok;
So Minimum Required SDK version should be set to at last 14.
Click Next button,
on next dialog called "Configure Project" just leave it to default settings and Next;
on next dialog called "Configure Launcher Icon" just leave it to default settings and Next;
on next dialog called "Create Activity" just leave it to default settings ("Create Activity" checked and "Blank Activity" selected) and click Next;
on next dialog called "Create a news black activity with and action bar" just leave it to default settings and click Finish button.
Great the first project is created.
After creating the project on main window on Project uncheck "Build Automatically"
else you won't be able to build your project!
Where is the design mode?
In the case of updated adt-bundle-windows-x86-20140702+jre.rar the main activity is expanded and selected;
is called "activity_main.xml"
You can find design more on selected Project->res sub-directory -> layout sub-directory is called "activity_main.xml"
Eclipse create released signed apk:
Right-click your project in Eclipse > Choose "Android Tool"
> Export Signed Application Package...
or > Export Unsigned Application Package...
Last edited by CodeCracker; 06-08-2026 at 13:06.
|