Skip to main content

Posts

Informetion

Age Calculator by Date of Birt

Recent posts

Privacy Policy for EarnEasy Apps

  Privacy Policy for EarnEasy Apps At EarnEasy Apps, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by EarnEasy Apps and how we use it. If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us. Log Files EarnEasy Apps follows a standard procedure of using log files. These files log visitors when they use app. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the app, tracking users' movement on the app, and gathering demographic information. Our Advertising Partners Some of advertisers in our app may use cookies and web beacons. ...

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...