Tutorial how to allow an application to write to external storage in Android Studio 1.4

Learn from this tutorial how to give permission to your app to be installed on external storage (SD card) in Android Studio version 1.4. Open AndroidManifest.xml file and write this code like in picture below: android:installLocation=”preferExternal” <uses-permission android:name=”android.permission.WRITE_EXTERNAL_STORAGE”/> This permission is needed only up to API level 18. Beginning with Android 4.4 (API level 19), the system […]
Read the rest of this entry »

Photo Cube 3D

Android application that displays 3D photo cube with 6 images on each side, rotating and playing a sound on touch. If you want to learn how to make this app in Android Studio, click here and follow the tutorial. Download free PhotoCube app from here and install it on your device and have fun. For […]
Read the rest of this entry »

Play Video

Android application who Play mp4 Video. If you want to learn how to make this app in Android Studio, click here and follow the tutorial. Download free PlayVideo app from here and install it on your device to play movie. For further questions leave a message.
Read the rest of this entry »

Barcode Reader

Android application who scan any barcode. If you want to learn how to make this app in Android Studio, click here and follow the tutorial. Download free Barcode Reader app from here and install it on your device to scan barcodes. For further questions leave a message.
Read the rest of this entry »

Tutorial how to Play Video in Android Studio 1.4

Learn from this tutorial how to Play mp4 Movie using VideoView in Android Studio version 1.4. Create New Project with Application name “Play Video“; Minimum SDK – API 9: Android 2.3 (Gingerbread). Create New Directory in app -> res with name “raw“. Copy a video you want to display, in new created folder, raw; I […]
Read the rest of this entry »

Tutorial how to export app from Android Studio 1.4

See here how to make a new project in Android Studio 1.4. Learn from this tutorial how to export (generating signed APK) your application from Android Studio 1.4. The app file has .apk extension and it is saved in: C:\Users\computer-name\AndroidStudioProjects\project-name\app\name-app.apk Project settings: Project name: My first application Company Domain: toyo.example.com Package name: com.example.toyo.myfirstapplication Minimum SDK: […]
Read the rest of this entry »