Skip to main content

Posts

Showing posts from January, 2019

Christmas Tree Greeting Card

Android   application   is formed of   a window   that is   animated text   and   image .   Text   is   animated using   animation   tween   type ,   in   which   we used as   parameters : change the   size   and   rotation .   Gradually   move   image   using a   different   image transitions . The application   is   the   image of a   Christmas tree   that   is decorated   and   catch   shine   under   your   eyes   .   Christmas Magic   on   your mobile phone! Application (app) for mobile phone can be   downloaded   from   HERE . After downloading, it copies itself to the mobile phone and   install . Project with all files ( source code ) can be given on request. For further questions   leave a message .

Sound recording with different frequencies

Android application has the option of changing the following  frequencies : 11025, 16000, 22050, 44100. With the 3 buttons, you can  start ,  stop and  play  your sound recording. Application (app) for mobile phone can be  downloaded  from  HERE . After downloading, it copies itself to the mobile phone and  install . Project with all files ( source code ) can be given on request. For further questions  leave a message .

SVG Integration in Android Studio

Tutorial about how to  integrate SVG  file in  Android Studio . Open Android Studio and create a project (see  here   how).  Application name for this example is  SVG . In  project   structure  in  app  ->  res    right click   ->  New  ->  Directory  create  New Directory . Name  New Directory :  raw . Click  here  to download the  archive  with  SVG file .  Unzip the   archive   and put the file  android.svg   ( with  copy-paste )  in   the newly created folder  raw . Click  here   to download   the  jar  file   and put it   ( with  copy-paste )  in the   libs   folder of our project . Right click on  app  folder of project and choose  Open Module Settings . Click on  Dependencies  tab, click on...

Export your app from Android Studio

Tutorial about  exporting (generating signed APK)  your application from Android Studio for installing on mobile devices. Application is exported with  apk  extension. Open Android Studio and first project Hello World created  here . Choose from menu:  Build  ->  Generate Signed APK… In next window  Generate Signed APK   Wizard  on  Key store path  choose  Create new… Complete the fields. On  Key store path  you choose a  path  and a  name  for your  jks  (I choose  signature  for this example). On  Password  you choose your own password. Click  OK . In next window  rewrite   password  and click  OK . In next window click  Finish . You find your  app  in project folder -> HelloWorld -> app ->  app-release.apk . You can rename your  apk  application,  copy ...

HomeIndexShopAboutServicesContact Export Android Studio Project

Google's preferred Integrated Development Environment (IDE) for developing Android apps is Android Studio. Occasionally an app needs to be moved between PC's there can be several reasons for this, including: Handing development over to a new programmer. Moving code to another computer or development environment. Distributing demo, example and training source code. Google used to use the Eclipse IDE. This supported an export option that allowed a project to be exported as a zip archive. It allowed files to be deselected for exclusion from the zip archive. The zip file could then be imported into another Eclispe IDE. Can an export project option be used in Android Studio? This article discusses how to export an Android Studio project. In brief it is to use a zip tool, but there are considerations. If you're in a hurry jump down to the Android Project Export Files Steps section. Otherwise read on for background information. Android Studio Move Project to Another Co...

How do you import Android Studio projects from one computer to another without a Gradle error?

For that you have to keep one copy of offline gradle. Download the latest gradle zip. put it into  .gradle  folder in your  pc-name/user/  folder. Preferences -> Gradle -> Global Gradle Settings -> Offline work Now you can take it from one PC to another so same gradle work for another PC too. Thank you.

Exporting A Project To Gradle And Building/Deploying On Android Studio

Symptoms I want to export my project via Gradle and use Android Studio to build it. Cause Reasons you might want to do this include: You want to make modifications to the application in Android Studio before building it. You want full control over the build process. Resolution You need to have your Android developer environment set up before you can build your Unity application in Android Studio. This involves downloading and installing Android Studio, which also installs the Android SDK. Download Android Studio from the  Android Studio website . Next, you need to add the Android SDK path to Unity. See Unity documentation on  Android SDK/NDK setup  for steps on how to do this. Once you have your Android developer environment set up you can open your Unity Project. Note that you need to set a valid bundle identifier to be able to export an Android Project. To set this, go to Player Settings (menu:  Edit  >  Project Settings  ...