Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android

Charlie Thomas
Charlie Thomas
40,856 Points

Looking For Beta Testers

I have built an app that simulates a high school student's "planner". A planner is normally a small book in which students record their homework, timetable and merits (e.g. stickers / points that they can cash in for items they may need e.g. pens, pencils etc.). Currently the app functions on android (the UI is still under development) and I am looking for beta testers for the app. No requirements to be a tester you just need an android device. Just comment and I'll post a link to the apk. I am also looking for a developer with experience on kindle fire development as I have issues. Finally if an iOS or Windows phone developers are willing to help me with porting to other OS.

Charlie Thomas
Charlie Thomas
40,856 Points

New updated apk. Moved minimum apk from API8 to API9, added validation on forms and fxed issue with activity_main.xml on small screens. https://www.dropbox.com/.../YourPlanner-debug-unaligned.apk

6 Answers

Wouldn't mind giving it a try/

I would like to help test your app

I'm testing the app now. I'd give you a feedback soon.

Hi Charlie,

I would like to help beta test your app,

Rod

Charlie Thomas
Charlie Thomas
40,856 Points

Your welcome to use the apk link above

Abdalla Ali
Abdalla Ali
2,972 Points

Hi Charlie,

I found a crash while testing your app! Here are the steps to produce the crash:

Tested device: Nexus 4 OS: 4.4.4

Steps: 1- Click on “Merits” button on the main screen 2- Click on “Spend merits” button 3- Without giving any input to the “Amount” EditText, you click on “Submit” button and the app will crash.

Solution: Try to do some validation when the user want to insert something to EditText, and if the user clicks on the button without inserting any value, you show toast message to the user.

For example: here is some code

EditText amount = (EditText) findViewById(R.Id.edittext1);

if(amount.getText().toString().equals(“”))
{
    Toast.makeText(ActivityName.this, Please insert amount, Toast.LENGTH_LONG).show();
}

Hope this helps and good luck.