Showing posts with label beta. Show all posts
Showing posts with label beta. Show all posts

Sunday, February 12, 2017

Iterate faster on Google Play with improved beta testing

Iterate faster on Google Play with improved beta testing


Posted by Ellie Powers, Product Manager, Google Play

Today, Google Play is making it easier for you to manage beta tests and get your users to join them. Since we launched beta testing two years ago, developers have told us that it’s become a critical part of their workflow in testing ideas, gathering rapid feedback, and improving their apps. In fact, we’ve found that 80 percent of developers with popular apps routinely run beta tests as part of their workflow.

Improvements to managing a beta test in the Developer Console

Currently, the Google Play Developer Console lets developers release early versions of their app to selected users as an alpha or beta test before pushing updates to full production. The select user group downloads the app on Google Play as normal, but can’t review or rate it on the store. This gives you time to address bugs and other issues without negatively impacting your app listing.

Based on your feedback, we’re launching new features to more effectively manage your beta tests, and enable users to join with one click.

  • NEW! Open beta – Use an open beta when you want any user who has the link to be able to join your beta with just one click. One of the advantages of an open beta is that it allows you to scale to a large number of testers. However, you can also limit the maximum number of users who can join.
  • NEW! Closed beta using email addresses – If you want to restrict which users can access your beta, you have a new option: you can now set up a closed beta using lists of individual email addresses which you can add individually or upload as a .csv file. These users will be able to join your beta via a one-click opt-in link.
  • Closed beta with Google+ community or Google Group – This is the option that you’ve been using today, and you can continue to use betas with Google+ communities or Google Groups. You will also be able to move to an open beta while maintaining your existing testers.

How developers are finding success with beta testing

Beta testing is one of the fast iteration features of Google Play and Android that help drive success for developers like Wooga, the creators of hit games Diamond Dash, Jelly Splash, and Agent Alice. Find out more about how Wooga iterates on Android first from Sebastian Kriese, Head of Partnerships, and Pal Tamas Feher, Head of Engineering.


Kabam is a global leader in AAA quality mobile games developed in partnership with Hollywood studios for such franchises such as Fast & Furious, Marvel, Star Wars and The Hobbit. Beta testing helps Kabam engineers perfect the gameplay for Android devices before launch. “The ability to receive pointed feedback and rapidly reiterate via alpha/beta testing on Google Play has been extremely beneficial to our worldwide launches,” said Kabam VP Rob Oshima.

Matt Small, Co-Founder of Vector Unit recently told us how they’ve been using beta testing extensively to improve Beach Buggy Racing and uncover issues they may not have found otherwise. You can read Matt’s blog post about beta testing on Google Play on Gamasutra to hear about their experience. We’ve picked a few of Matt’s tips and shared them below:

  1. Limit more sensitive builds to a closed beta where you invite individual testers via email addresses. Once glaring problems are ironed out, publish your app to an open beta to gather feedback from a wider audience before going to production.
  2. Set expectations early. Let users know about the risks of beta testing (e.g. the software may not be stable) and tell them what you’re looking for in their feedback.
  3. Encourage critical feedback. Thank people when their criticisms are thoughtful and clearly explained and try to steer less-helpful feedback in a more productive direction.
  4. Respond quickly. The more people see actual responses from the game developer, the more encouraged they are to participate.
  5. Enable Google Play game services. To let testers access features like Achievements and Leaderboards before they are published, go into the Google Play game services testing panel and enable them.

We hope this update to beta testing makes it easier for you to test your app and gather valuable feedback and that these tips help you conduct successful tests. Visit the Developer Console Help Center to find out more about setting up beta testing for your app.

Join the discussion on

+Android Developers

Available link for download

Read more »

Tuesday, February 7, 2017

iOS 10 Public Beta 2 released by Apple

iOS 10 Public Beta 2 released by Apple


iOS 10 screenshots

Days after Apple released iOS 10 beta 3 to developers, they’re unleashing some new software for public testers, too.

iOS 10 Public Beta 2 is now rolling out to members of Apple’s Beta Software Program. If you’re a member, you can grab the update by going into Settings > General > Software Update. To learn more about the Apple Beta Software Program, you can go here.

Apple


from PhoneDog.com - Latest videos, reviews, articles, news and posts http://ift.tt/29NRA9a
via IFTTT

Available link for download

Read more »

Thursday, January 12, 2017

can I flash android beta update Ota when rooted

can I flash android beta update Ota when rooted


I meant download the Ota of the Android beta over my custom rom


from xda-developers http://ift.tt/2a5v5xs
via IFTTT

Available link for download

Read more »

Monday, December 12, 2016

Android Studio 2 0 Beta

Android Studio 2 0 Beta


Posted by Jamal Eason, Product Manager, Android

Android Studio 2.0 is latest release of the official Android IDE focused on build performance and emulator speed to improve the app development experience. With brand new features like Instant Run which enables you to quickly edit and view code changes, or the new & faster Android emulator, Android Studio 2.0 is the upgrade you do not want to miss. In preparation for the final release, you can download Android Studio 2.0 Beta in the Beta release channel. Overall, the Android Studio 2.0 release has a host of new features which include:

  • *Updated for Beta* Instant Run - Enables a faster code edit & app deployment cycle.
  • *Updated for Beta* Android Emulator - Brand new emulator that is faster than most real devices, and includes a brand new user interface.
  • *Updated for Beta* Google App Indexing Integration & Testing - Adding App Indexing into your app helps you re-engage your users. In the first preview of Android Studio 2.0 you could add indexing code stubs into your code. With the beta release you can now test and validate your URL links in your app all within the IDE.
  • Fast ADB - Installing and pushing files is now up to 5x faster using Android Studio 2.0 with an updated Android Debug Bridge (ADB) offered in platform-tools 23.1.0.
  • GPU Profiler Preview - For graphics intensive applications, you can now visually step through your OpenGL ES code to optimize your app or game
  • Integration of IntelliJ 15 - Android Studio is based on the efficient coding platform of Intellij. Check out the new features from IntelliJ here.

Check out the latest installment of Android Studio Tool Time video below to watch the highlights of the features.



New Features in Android Studio 2.0 Beta


Instant Run

We first previewed Instant Run in November; this latest beta release introduces a new capability called Cold Swap

Instant Run in Android Studio 2.0 allows you to quickly make changes to your app code while your app is running on an Android device or Android Emulator. Instead of waiting for your entire app to rebuild and redeploy after each code change, Android Studio 2.0 will try to incrementally build and push only the incremental code or resource change. Depending on the code changes you make, you can see the results of your change in under a second. By simply updating your app to use the latest Gradle plugin ( com.android.tools.build:gradle:2.0.0-beta2’ ), you can take advantage of this time saving features with no other modifications to your code. If your project is setup correctly with Instant Run, you will see a lightning bolt next to your Run button on the toolbar:


Instant Run Button

Behind the scenes, Android Studio 2.0 instruments your code during the first compilation and deployment of your app to your device in order to determine where to swap out code and resources. The Instant Run features updates your app on a best-effort basis and automatically uses one of the following swap methods to update your app:

  • Hot Swap - When only method implementations (including constructors) are changed, the changes are hot swapped. Your application keeps running and the new implementation is used the next time the method is called.
  • Warm Swap - When app resources are changed, the changes are warm swapped. This is similar to a hot swap, except that the current Activity is restarted. You will notice a slight flicker on the screen as the Activity restarts.
  • *New for Beta* Cold Swap - This will quickly restart the whole application. Typically for structural code change, including changes to the class hierarchy, method signatures, static initializers, or fields. Cold Swap is available when you deploy to targets with API level 21 or above.

We made major changes to Instant Run since the first preview of Android Studio 2.0, and now the feature works with more code and resources cases. We will continue to add more code change cases to Instant Run in future releases of Android Studio. If you have any suggestions, please feel free to send us a feature request and learn more about Instant Run here.

App Indexing

Supporting app indexing is now even easier with Android Studio 2.0. App Indexing puts your app in front of users who use Google Search. It works by indexing the URL patterns you provide in your app manifest and using API calls from your app to make content within your app available to both existing and new users. Specifically, when you support URLs for your app content, your users can go directly to those links from Google Search results on their device.

  • Code Generation Introduced in Android Studio 2.0 Preview, you can right click on AndroidManifest.xml or Activity method (or go to Code ? Generate…? App Indexing API Code) to insert HTTP URL stub codes into your manifest and app code.

  • *New for Beta* URL Testing & Validation What is new in Android Studio 2.0 Beta is that you can now validate and check the results of your URLs with the built-in validation tool (Tools ? Android ? Google App Indexing Test). To learn more about app indexing, click here.

Insert App Indexing API Code into your app

App Indexing Testing


App Indexing Test Results

Android Emulator

*Updated for Beta* The new and faster Android emulator also includes fixes and small enhancements for this beta release. Notably, we updated the rotation controls on the emulator toolbar and added multi-touch support to help test apps that use pinch & zoom gestures. To use the multi-touch feature, hold down the Alt key on your keyboard and right-click your mouse to center the point of reference or click & drag the left mouse button to zoom.


Pinch & Zoom Gesture with Multi-Touch

Whats Next

Android Studio 2.0 is a big release, and now is good time to check out the beta release to incorporate the new features into your workflow. The beta release is near stable release quality, and should be relatively bug free. But as with any beta release, bugs may still exist, so, if you do find an issue, let us know so we can work to fix it. If you’re already using Android Studio, you can check for updates on the Beta channel from the navigation menu (Help ? Check for Update [Windows/Linux] , Android Studio ? Check for Updates [OS X]). When you update to beta, you will get access to the new version of Android Studio and Android Emulator.

Connect with us, the Android Studio development team, on Google+.


Available link for download

Read more »

Saturday, December 10, 2016

Apple pushing iOS 10 beta 3 update to developers watchOS 2 2 2 to the public

Apple pushing iOS 10 beta 3 update to developers watchOS 2 2 2 to the public


iOS 10 new features

Heads up, iOS 10 testers, because there’s a new update for you to try.

iOS 10 beta 3 is now available for download. To grab it, you’ll need to be registered with Apple’s developer program, then download it over the air by going into Settings > General > Software Update or by getting it through Apple’s developer web portal. 

Apple


from PhoneDog.com - Latest videos, reviews, articles, news and posts http://ift.tt/2anPOw7
via IFTTT

Available link for download

Read more »

Sunday, November 13, 2016

Apex Launcher Pro v2 0 0 beta 2 Apk Full App

Apex Launcher Pro v2 0 0 beta 2 Apk Full App



Apex Launcher Pro v2.0.0 beta 2
Requirements: Android 4.0+
Overview: Powerful, fast, and highly customizable home replacement for Android 4.0+.
Apex Launcher helps you create a customized homescreen experience on your Ice Cream Sandwich (Android 4.0) device.

Features:
- Customizable homescreen grid size and up to 9 homescreens
- Scrollable dock with up to 7 icons per page and up to 5 pages
- Infinite & elastic scrolling (homescreen, drawer and dock)
- Fancy transition effects (tablet, cube, etc.)
- Hide elements as you want (persistent search bar, status bar, or even the dock)
- Customizable icons and labels for shortcuts and folders
- Choose different folder preview styles and background
- Multiple drawer styles (transparent/opaque, horizontal/vertical, paginated/continuous)
- Drawer apps sorting (title, install date, mostly used)
- Hide apps from the drawer
- Lock your desktop to prevent accidental changes
- Enjoy homescreen gestures (pinch, swipe up/down, double tap)
- Backup/restore settings and data
- Optimized for both phones and tablets
- Lots of other customization options!
Apex Launcher Pro (Paid Version) Features:
- Multiple configurable drawer tabs
- Unread count notifications
- Dock swipe gestures
- Two finger gestures
- More transition effects
- Batch add option for folders
- Option to merge folder contents
- Widgets in dock (1×1 only)
- Overlapping widgets
- More features on the way!
Note: Due to limitations of the Android framework, you won’t be able to add widgets from the app drawer without root access. If your device is rooted, please enable the Root Helper via Settings > Advanced settings > Enable Root Helper.
Tips:
- Pinch the screen to access screen previews (like Exposé or HTC Sense).
- Long press an icon to drag and drop it over another one to create a folder.
- Long press icons/folders on the desktop and choose edit from the popup menu to customize icons and labels.
- Drag, hover, and drop app icons over the delete button at the top of the screen to quickly uninstall apps.
- Long press an app in the hide apps list to quickly launch that app.
- Switch to single screen wallpaper mode to fix wallpaper zooming issues.
- Enable the Root Helper in advanced settings (root required) to add widgets from the drawer.
Permissions:
- BIND_APPWIDGET: Required to add widgets from the drawer (only if installed as system app).
- CALL_PHONE: Create direct-dial shortcuts on the homescreen.
- EXPAND_STATUS_BAR/SET_WALLPAPER/SET_WALLPAPER_HINTS/VIBRATE: Standard launcher functions.
- INTERNET/ACCESS_NETWORK_STATE: Check for updates and anonymous usage/error reporting (optional).
- WRITE_EXTERNAL_STORAGE: Backup/restore settings and data.
- READ_CONTACTS/READ_SMS/GET_ACCOUNTS/READ_CONTENT_PROVIDER: Missed call and unread SMS/Gmail notifications (pro version).
Note:
This is patched version, fully unlocked pro functions.
If your ROM came with Apex Launcher you’ll have to remove it before installing this.
What’s in this version:
v2.0.0beta2 (Apr 29, 2013)
Added badge size option (pro)
Improved activity picker
Improved wallpaper chooser
Settings UI tweaks
Disabled auto update checks by default
Fixed “create folder” menu bug
Fixed apps disappearing after removing folders
Fixed a sorting bug within drawer folders
Fixed a bug with adding certain apps to custom tabs
Fixed drawer refresh bug after uninstalling apps
Fixed a wallpaper scaling issue
Updated translations

https://play.google.com/store/apps/details?id=com.anddoes.launcher
Download zippyshare


Available link for download

Read more »

Saturday, November 12, 2016

Do you run beta software on your daily driver

Do you run beta software on your daily driver


iOS 10 beta

New product announcements are typically always exciting. We get to see, usually once a year, what a new company has been working on since their last big release. Whether that’s hardware or software, the anticipation for what’s coming can be pretty strong, and so can the desire to want to use whatever that new thing is right now.

Waiting is never easy, but it only gets worse when it’s something you really want to use.

Apple
Google


from PhoneDog.com - Latest videos, reviews, articles, news and posts http://ift.tt/2acxWoK
via IFTTT

Available link for download

Read more »

Sunday, October 9, 2016

How to Install Android 6 0 1 Marshmallow PaulPizzROM VRU2CPD1 BETA r 2 on Verizon Galaxy Note 4 SM N910V

How to Install Android 6 0 1 Marshmallow PaulPizzROM VRU2CPD1 BETA r 2 on Verizon Galaxy Note 4 SM N910V









According to XDA Member "PaulPizz", Android 6.0.1 Marshmallow PaulPizzROM VRU2CPD1 BETA r-2 is released for Verizon Samsung Galaxy Note 4 SM- N910V.


÷ ROM Features:

- Based off of stock N910VVRU2CPD1 firmware
- DeoDexed
- Zip Aligned
- Rooted
- Busybox
- De-Knoxed
- DeBloated
- Xposed Framework
- More to come...

View my Flipboard Magazine.

 ÷ Prerequisites:

•This tutorial is only for installing Android 6.0.1 Marshmallow PaulPizzROM VRU2CPD1 BETA r-2 on Verizon Samsung Galaxy Note 4 SM- N910V. Please do not try on any other Galaxy Note 4 variants.

•Your phone should have a custom recovery installed in order to install this NanoROM ROM on your phone.

•We will be using TWRP Recovery for this tutorial.


•This tutorial will wipe out all your data. Make sure you backup all your data in your phone before proceeding.

•Samsung KIES will NOT detect your phone after installing this ROM because it is a custom firmware.

•Perform a Dalvik Cache wipe before proceeding from the Recovery Mode.




*Disclaimer:

Android Custom ROM fix ® provide various Firmware Updates and Rooting process along with Custom ROM,Modes,file are all belong  to their owners/developers. The autor of this site or the developers are not responsible,  if you damage or brick your device.Do it on your own risk and follow the instruction properly.

* Important:

Backup important files stored on your device before proceeding with the steps below, so that in case something goes wrong you’ll have backup of all your important files.

You can find out how to apply it right now via XDA.


For More Verizon Samsung Galaxy Note 4 SM- N910V Updates Keep Checking Android custom ROM Fix ™®

That’s all. We hope this guide serves you well. If there’s anything you’d like to be added/changed on this page, PLZ Use the comment box below to contribute more ideas & Suggestions .

Like this post? PLZ Hit the share buttons below to share this article with your friends on Facebook, Google + and Twitter.

Want the latest Updates Sign up for our newsletters!

PLZ Follow Us On Flipboard 4 More Latest Updates.

Best Regards.™


Available link for download

Read more »

Saturday, October 1, 2016

Koushs new screen sharing app Inkwire is available in beta on the Play Store

Koushs new screen sharing app Inkwire is available in beta on the Play Store


Screenshot_20160722-115048

Koushik Dutta, a.k.a Koush, is one of Androids most popular developers. From the custom recovery ClockworkMod to ROM Manager, to Allcast, to Vysor, his apps are downloaded almost religiously amongst power users, developers, and tinkerers. In the last few hours, hes made a new app available in beta, named Inkwire.

Based on Koushs previous app, Vysor, which mirrors your Android devices screen on a computer, Inkwire goes one step further and shares the screen to another Android device, letting someone else help with a problem or issue, which could be especially useful for tech support workers or, as Koush says, independent app developers.

Read More

Koushs new screen-sharing app Inkwire is available in beta on the Play Store was written by the awesome team at Android Police.



from Android Police – Android News, Apps, Games, Phones, Tablets http://ift.tt/2a2mZ7j
via IFTTT

Available link for download

Read more »

Tuesday, September 6, 2016

Android Developer Story RogerVoice takes advantage of beta testing to launch its app on Android first

Android Developer Story RogerVoice takes advantage of beta testing to launch its app on Android first


Posted by Lily Sheringham, Google Play team

RogerVoice is an app which enables people who are hearing impaired to make phone calls through voice recognition and text captions. Founded by Olivier Jeannel, who grew up with more than 80 percent hearing loss, the company successfully raised $35,000 through Kickstarter to get off the ground. Today the team publicly released the app on the Android platform first.

The team behind RogerVoice talk about how material design and beta testing helped them create an interface which is accessible and intuitive to navigate for users.



Learn more about how RogerVoice built its app with the help of Google Play features:

  • Material Design: How Material Design helps you create beautiful, engaging apps.
  • Beta testing: Learn more about using beta testing on Google Play for your app.
  • Developer Console: Make the most of the Google Play Developer Console to publish your apps and grow and engage your user base.

Available link for download

Read more »

Monday, August 22, 2016

Fast Pro for Facebook Beta v1 9 8 6 Apk Full App Free Download

Fast Pro for Facebook Beta v1 9 8 6 Apk Full App Free Download



Fast Pro for Facebook (Beta) v1.9.8.6
Requirements: 2.1 and up
Overview: What is Fast for Facebook?
Fast is a new and free android client to manage your Facebook account: Fast is born from the idea to give a great experience even to the less powerful device!

After many
Updates, it is a Facebook client with low battery and bandwidth consumption and a unique user interface. It is active only when you want. No hidden services or annoying notifications.
Main features:
• Access to Facebook News Feed
• Send and share contents
• Read notifications
• Read and send private messages
• Chat
• Search friends, people, pages and everything else
• View Albums and download photos
• Access to Groups and Pages
• Background themes (grey, white or pictures loaded from your Device)
• Widget and quick links
• Optional Security pin against snoopy
• Optional Push Notifications Add-on (available on Google Play)
What’s in this version:
HANGELOG (full here http://goo.gl/YiXoF ):
• Added photo tagging
• Added new tablet landscape layout
• Added full private messages history (if you are on top of the message history the old messages are loaded automatically)
• Added possibility to post a photo directly in a status update
• Added custom color background selectable with a color picker
• Updated write on wall feature following the new Face-book© Rules: https://developers.facebook.com/road…leted-changes/

https://play.google.com/store/apps/details?id=app.fastpro.com


Download free Link


Available link for download

Read more »