Bitcoin Forum

Economy => Gambling => Topic started by: giantdragon on February 14, 2013, 06:46:40 PM



Title: Peerbet Android app - free Bitcoins for new users
Post by: giantdragon on February 14, 2013, 06:46:40 PM
We are proud to announce Peerbet Android app! Current version is stable enough for real play, however it is impossible to test it on all Android devices and we will be appreciated for your bug reports, as well as suggestions to improve. Our app is 100% free and open-source.

We are giving away 0.001 BTC for free to each user without any wagering requirements. Your just have to install app on your device, sign in and write your Peerbet username in this thread.

Install package: http://peerbet.org/download/Peerbet.apk
Sources: http://peerbet.org/download/Peerbet_src.zip

https://peerbet.org/img/droid3/qrcode.gif


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Tartarus on February 14, 2013, 10:02:00 PM
u573439337


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 14, 2013, 10:16:20 PM
u573439337
Sent!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Zedster on February 14, 2013, 10:26:15 PM
Zedster     :)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: szuetam on February 14, 2013, 10:26:32 PM
login:
szuetam


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: dmatthewstewart on February 14, 2013, 10:38:00 PM
Good luck with it. I wish I was able to test Android for you because I would love to help out. But unfortunately I cannot


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: szuetam on February 14, 2013, 10:48:26 PM
login:
szuetam

Jupi!!
I have it
0.01000000 BTC

Do you want to check sth particular?
Could I use multiple accounts with one IP?
:D


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: milly6 on February 14, 2013, 10:49:55 PM
Login= Limie

It looks great so far! Can't wait to dive in!

(edit)- Do you want bugs posted in the forum?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 14, 2013, 11:53:28 PM
Do you want to check sth particular?
Could I use multiple accounts with one IP?
I think you just have to play some time and if there are some issues you could notice them.
I give free BTC once per user posted in this thread and don't have any restrictions regarding number of accounts you have.

Do you want bugs posted in the forum?
Yes, you can write here.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: helloworld111 on February 15, 2013, 12:21:42 AM
username:
helloworld111


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: milly6 on February 15, 2013, 12:44:54 AM
Im running an HTC Eris Android

Profile screen does not allow for screen adjustment all text is not readable

Raffle list is not loading. Links are clickable from the chat. When the raffle loads there is nothing for the prize value, ticket price, odds ect...it is blank.

Let me know if this is helpful, Ill keep letting you know what I see if you want!

-Limie


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 15, 2013, 01:55:31 AM
When the raffle loads there is nothing for the prize value, ticket price, odds ect...it is blank.
I got similar report from other users, tried to run in the emulator with Android 2.3 and see exactly as you described. What version do you have?

P.S. Seems to be a bug in layout. If you have some experience in Android programming, please look code and give an advice what is wrong. I dynamically update values in the table row when data is received from the server. On Android 2.2 and 4.0 it works fine.

Code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="10sp"
android:paddingBottom="10sp"
android:paddingLeft="2sp"
android:paddingRight="2sp"
android:orientation="vertical" >
   
    <LinearLayout
    android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:orientation="horizontal" >
       
        <TextView
android:id="@+id/raffleID"
android:textSize="22sp"
android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textStyle="bold" />
       
        <ImageView
            android:id="@+id/raffleType"
        android:layout_width="wrap_content"
        android:layout_marginLeft="5sp"
        android:layout_height="wrap_content" />
       
        <ImageView
            android:id="@+id/raffleProtected"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="5sp" />
       
        <TextView
android:id="@+id/raffleExpire"
android:layout_marginLeft="5sp"
android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
       
        <TextView
android:id="@+id/raffleStatus"
android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="5sp"
    android:layout_marginTop="1sp"
    android:paddingLeft="3sp"
    android:paddingRight="3sp" />
       
    </LinearLayout>
   
    <LinearLayout
    android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:orientation="horizontal" >
       
    <ProgressBar
        android:id="@+id/progressBar"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:layout_marginTop="1sp"
style="?android:attr/progressBarStyleHorizontal" />
   
    <TextView
android:id="@+id/progressPercent"
android:layout_width="wrap_content"
android:layout_gravity="center_vertical"
android:gravity="right"
android:minEms="5"
    android:layout_height="wrap_content" />
   
</LinearLayout>
   
    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:shrinkColumns="*"
    android:stretchColumns="*" >
       
        <TableRow
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="top" >
       
            <TextView
android:id="@+id/prizeValue"
android:layout_weight="1"
android:layout_width="0dip"
android:layout_height="wrap_content" />
   
    <TextView
android:id="@+id/ticketPrice"
android:layout_weight="1"
android:layout_width="0dip"
    android:layout_height="wrap_content" />
   
    <TextView
android:id="@+id/ticketsSoldTotal"
android:layout_weight="1"
android:layout_width="0dip"
    android:layout_height="wrap_content" />
       
</TableRow>

        <TableRow
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5sp"
        android:gravity="top" >
       
            <TextView
android:id="@+id/odds"
android:layout_weight="1"
android:layout_width="0dip"
android:layout_height="wrap_content" />
   
    <TextView
android:id="@+id/profit"
android:layout_weight="1"
android:layout_width="0dip"
    android:layout_height="wrap_content" />
   
    <TextView
android:id="@+id/tickets"
android:layout_weight="1"
android:layout_width="0dip"
    android:layout_height="wrap_content" />
       
</TableRow>
       
</TableLayout>
       
</LinearLayout>


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: milly6 on February 15, 2013, 02:03:58 AM
When the raffle loads there is nothing for the prize value, ticket price, odds ect...it is blank.
I got similar report from other users, tried to run in the emulator with Android 2.3 and see exactly as you described. What version do you have?



Build: RA-eris-v1.6.2


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 15, 2013, 02:08:06 AM
Build: RA-eris-v1.6.2
I asked what version of Android do you have?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: milly6 on February 15, 2013, 02:22:30 AM
Sorry about that. I have a rooted eris with Evervolv-Eligo-1.2.0b3 which is Android version 2.3.5


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: bipolarbear187 on February 15, 2013, 03:02:55 AM
Installed on Samsung Galaxy Nexus (VZW).

My user account is:  u309135173

Thanks!

Rob


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 15, 2013, 03:09:38 AM
Finally found and fixed bug which caused broken layout in some Android versions. Just set parent="android:Theme.Black.NoTitleBar" in AndroidManifest "values" folder.

Please install an update (https://peerbet.org/download/Peerbet.apk).


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Driice on February 15, 2013, 03:11:21 AM
Everything looks fine on my galaxy s3.

User ID: Driice


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: cavveman on February 15, 2013, 04:38:11 AM
Everything looks alright on my Sony Xperia Tipo running on ICS

My nick is cavveman
Raffle works nice.
Chat works aswell, though little slow, but that is probably my hspa+ connection

Edit:
I do not know if this is a bug or not.
But my balance does not state same amount on the screens.


https://i.imgur.com/c5Ywsdq.jpg https://i.imgur.com/9Lt8DE4.jpg https://i.imgur.com/a6hB6AZ.jpg

And yes, I usually have bad luck :P
Also, would it be possible that the chat used the time that is in the phone?
As it is now, I am in GMT+1, but the chat is in GMT.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 15, 2013, 05:15:24 AM
But my balance does not state same amount on the screens.
It may happen if you have played provably fair raffle and Bitcoin block was generated just before you opened new window.

Also, would it be possible that the chat used the time that is in the phone?
As it is now, I am in GMT+1, but the chat is in GMT.
I will add this in next major release.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 15, 2013, 05:22:03 AM
Fixed bug affecting smartphones with Android Jelly Bean and no hardware menu button. Please update (https://peerbet.org/download/Peerbet.apk).


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: DBG on February 15, 2013, 05:54:14 AM
Hey giantdragon I sent you a PM with some info (non-critical but may be of use to you).  I am enjoying the Android app on my phone now under the nick "tonyrayo"  :).  Now all I need is some luck!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: 001sonkit on February 15, 2013, 06:07:33 AM
lordsonkit
Android 4.0.3:Sony Tablet P


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: bipolarbear187 on February 15, 2013, 06:40:57 AM
Thanks for the update.  Context menu on Jellybean makes the app much more usable.

Have you considered the ability to swipe between screens/tabs?  Not a big deal, but could be nice...


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: DBG on February 15, 2013, 06:52:16 AM
Thanks for the update.  Context menu on Jellybean makes the app much more usable.

Have you considered the ability to swipe between screens/tabs?  Not a big deal, but could be nice...
It's interesting how Android/iOS has created these new habits in us (I remember recently trying to pinch to zoom text on my iPad as it was connected to a VNC display and just ended up highlighting a lot of text on screen).  That is actually a very trivial task (then again I'm not the one doing the work in this case but it is still a good suggestion :D) as seen by the example code here (http://developer.android.com/training/implementing-navigation/lateral.html).  It could also work to switch from raffle details back to complete listings.  Heh it's actually a technique originally called "pogo-ing", now they are all fancy and refer to it as "lateral movement".


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: szuetam on February 15, 2013, 01:02:18 PM
Feature req:

There should be auto refresh option after a bet.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: phants on February 15, 2013, 02:22:41 PM
phants
1AMX5KSg62d3BPcgRWJzVGEtpMuwaaoJvC

Android 2.3 320x480 works fine! 8)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: g8ve on February 15, 2013, 03:07:58 PM
On Nexus 4 android 4.2 app looks nice for first look. try to test deeply..
my peerbet username: g8ve


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 15, 2013, 03:41:17 PM
Next bunch of bonuses have been sent.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: mikeoxhard on February 15, 2013, 05:22:24 PM
Got it on my tmobile G2 works great!

name--> mikeyoxnard


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: scapa14 on February 15, 2013, 07:06:48 PM
Tested on my BlueStacks app player for windows, works great. ;)
User: kelevra


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 15, 2013, 08:16:57 PM
Just made another big update!

  • Message timestamps in the chat will be displayed based on your local time zone.
  • Virtual keyboard will be automatically closed when you press some button inside activity window.
  • When you buy tickets and return back to the raffle list, the raffle you have played will be automatically updated.
  • Fixed a bug regarding different balance value on different tabs.
  • When you press BACK button from any tab, you will automatically log off (security measure - someone will not get access to your Peerbet account if taken your smartphone).

Please update to the latest version (http://peerbet.org/download/Peerbet.apk)!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: scribe on February 15, 2013, 08:38:22 PM
Username: Scribe

Running OK on an HTC desire S so far, will carry on playing...


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: finway on February 16, 2013, 02:48:04 AM
Username:finway

Running ok on MEIZU MX Android Phone.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: KrLos on February 16, 2013, 06:25:38 AM
HI!
Installed!

KrLos -> My Username!

SGS2- It seems nice! but waiting for withrawal aswell


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: welyoe on February 16, 2013, 07:30:21 AM
username : welyoe

nice apps, will post later after trying


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Evan on February 16, 2013, 03:41:35 PM
I am proud to release first public beta of the Peerbet Android app. We are looking for the beta testers who will install it on the smartphone or tablet, try to play and report about bugs have been found and suggestions to improve. Our app is 100% free and open-source.

We are giving away 0.01 BTC for free to each user without any wagering requirements. Your just have to install app on your device, sign in and write your Peerbet username in this thread.

Install package: http://peerbet.org/download/Peerbet.apk
Sources: http://peerbet.org/download/Peerbet_src.zip

https://peerbet.org/img/droid3/qrcode.gif

User: Parallax


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 16, 2013, 04:05:56 PM
Sent another bunch of credits for our testers.

but waiting for withrawal aswell
If you don't want to wait until your withdrawal will be processed, check "Send withdrawal right now" and Bitcoins will be sent instantly.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: dpanter on February 16, 2013, 06:09:11 PM
Running fine on a Galaxy S with 2.3.5
username dpanter :)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: notaek on February 16, 2013, 06:18:44 PM
I'm down to help out.  My username is


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: swanduck on February 16, 2013, 06:33:37 PM
swanduck

Thanks!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Troy0 on February 17, 2013, 02:07:47 AM
Troy


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Benson Samuel on February 17, 2013, 03:20:37 AM
Cryptos1


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: dykast on February 17, 2013, 05:32:46 AM
Username:
Dykast

thanks:)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: timmie on February 17, 2013, 10:57:39 AM
Username: timmie

Installed on a Samsung Galaxy SIII


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: bjornnl on February 17, 2013, 01:21:53 PM
everything working fine samsung galaxy s3.

username: BjornNL


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: mpr20rt on February 17, 2013, 02:32:25 PM
Hey! Zte Blade here! Works fine only missed withdraw option? ???

Username: ramenra

Cheers!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: galaxyAbstractor on February 17, 2013, 02:49:12 PM
Works on my s2. galaxyAbstractor. Thanks :)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 17, 2013, 04:11:42 PM
New portion of the testers have been credited!

Works fine only missed withdraw option? ???
You should withdraw via website.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Rounder on February 17, 2013, 05:12:34 PM
Username:
Rounder42


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: sal002 on February 17, 2013, 05:36:44 PM
sal002

On Acer A500 - so far seems to work fine, but will check some more.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: kbroadfoot on February 17, 2013, 06:55:59 PM
Okay I am in..... my peerbet username is:   kfoot
Installed on my Optimus cell phone.



Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: GIANNAT on February 17, 2013, 07:04:58 PM
Trying right now. username: RoGER


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: mobile on February 17, 2013, 08:15:51 PM
nice looking app!

mobile314

1BjKWr7VGUGCJzDgNyCRRYX37Mzd6BUqKe


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: sanderth on February 18, 2013, 01:35:42 PM
Works good on my Galaxy Mini

Username: sanderth


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: debianlinux on February 18, 2013, 02:04:56 PM
u/n: cockamamey


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: twix on February 18, 2013, 03:00:58 PM
Hello,

Works well as for now on ZTE Blade S - ZTE San Francisco - ZTE Crescent (same device)

Maybe you could check out ActionBarSherlock to give every device a Holo interface.

(Username : twix)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Ryland R. Taylor-Almanza on February 18, 2013, 06:47:55 PM
Ryland

:D


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: heidula on February 18, 2013, 07:09:43 PM
username: heidula

Installed on Samsung Galaxy S II

158GLAJxRYSqwbiLG7x2cZJi5WCZZDZ6dK


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Ryland R. Taylor-Almanza on February 18, 2013, 11:44:34 PM
Peerbet's awesome! I've been comparing the android app and the regular website though, and found a glitch on the website actually. I won a bet and the android app says win, but the website says I lost. It does show positive net profit, though.

https://i.imgur.com/2gZ3Uz4.png


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 18, 2013, 11:51:15 PM
Peerbet's awesome! I've been comparing the android app and the regular website though, and found a glitch on the website actually. I won a bet and the android app says win, but the website says I lost. It does show positive net profit, though.
What is your Peerbet username?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: debianlinux on February 19, 2013, 12:43:43 AM
Are the freebies still being given? If so, what is the approximate wait time; I signed up several hours ago.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Ryland R. Taylor-Almanza on February 19, 2013, 01:04:37 AM
Peerbet's awesome! I've been comparing the android app and the regular website though, and found a glitch on the website actually. I won a bet and the android app says win, but the website says I lost. It does show positive net profit, though.
What is your Peerbet username?
Ryland


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 19, 2013, 01:14:07 AM
Are the freebies still being given? If so, what is the approximate wait time; I signed up several hours ago.
You have to write your Peerbet username in this thread to receive free credits.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 19, 2013, 01:33:47 AM
@Ryland, it was a bug in the string comparison (MySQL compare case-insensitive while PHP stings are case-sensitive). Fixed now!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Grey Ghost on February 19, 2013, 02:21:22 AM
Grey Ghost


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: debianlinux on February 19, 2013, 02:24:09 AM
Are the freebies still being given? If so, what is the approximate wait time; I signed up several hours ago.
You have to write your Peerbet username in this thread to receive free credits.
u/n: cockamamey


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 19, 2013, 02:34:17 AM
u/n: cockamamey
Already sent. Check your transaction history!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: alberthrocks on February 19, 2013, 03:27:09 AM
Played around with the app! Interested in knowing how some people got a bot in the chat part of the app...

alberthrocks is my username.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Digigami on February 19, 2013, 05:21:04 AM
just downloaded and installed to my Atrix, so far so good.. if your still giving us a little bit to get started with, username is Digi


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: RobertClemons on February 19, 2013, 06:24:25 AM
RobertClemonsRobertClemons

My mtgox Bitcoin address is 1KxUxh3dArxwUzTbQqdcaarjift1iX7CVk and this is going to charity (Oxfam)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Ryland R. Taylor-Almanza on February 19, 2013, 06:45:40 AM
Found another inconsistency. Raffle #642747. The app said I lost and had a negative net profit, but the website said I won and had a positive net profit. This time, the app was wrong, Yay!

Website:
https://i.imgur.com/1dhmAUe.png

App:
https://i.imgur.com/qNcOXoq.jpg



Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: honolululu on February 19, 2013, 07:59:57 AM
The app is looking sweet!
Tmobile gs2 running android 4.0.4

Peerbet username is oxen45
if the offer is still on.  Working well so far.  Besides the first two losses, oh there we go.  A win.  :)  

And now it froze on the 5th bet.  "Unfortunately, Peerbet has stopped" message came up. Any logs you want?

Placed a bunch of raffles and made a few.  A button to get back to the raffle list after creating a raffle would be nice.



Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: cotelio on February 19, 2013, 08:34:38 AM
Haven't actually played yet, but just made an account and installed the app on my Galaxy Nexus and logged in.
Account name is "cotelio", no quotes.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: 2weiX on February 19, 2013, 09:13:39 AM
user 2weiX
seems to work fine on samsung note 1 so far.


looks more like a round-based game of satoshidice, tho.
expect to see "real bets" soon.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Anormalname on February 19, 2013, 01:48:02 PM
Been playing and losing. Haha. I make money back then just lose it all again getting cocky and betting it all :p I haven't encountered any complaints as of yet, but if i find something i'll be sure to report it.

Username: anormalname


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Bitbowoman on February 19, 2013, 04:42:48 PM
Hi!
Peerbet's Username: Bitbowoman


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 19, 2013, 04:46:28 PM
Found another inconsistency. Raffle #642747. The app said I lost and had a negative net profit, but the website said I won and had a positive net profit. This time, the app was wrong, Yay!
When did you seen this inconsistency first time (just after bought tickets or when viewed history list)? I just looked into your account from my phone and seen "Win" result for this raffle as it must be. BTW, right after your previous report I have updated server scripts to fix username case-sensitiveness bug and may be your seen it before fix. Please check again.

And now it froze on the 5th bet.  "Unfortunately, Peerbet has stopped" message came up. Any logs you want?
It can happen if the server freezes (may be you ever noticed long wait and then "Bad gateway" message in the browser when used Peerbet website). Just wait few time and try again. Also don't change screen orientation while query is in progress.

A button to get back to the raffle list after creating a raffle would be nice.
Why not to use hardware "Back" button?



Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: ProSt on February 19, 2013, 06:08:27 PM
Working well on HTC Desire.

Suggestions for improvements would be adding an easy way to make withdrawals / transfers and perhaps allowing a qrcode to be generated for the pay-in address.

My username is:
ProSt

Thanks!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Ryland R. Taylor-Almanza on February 19, 2013, 07:16:29 PM
Found another inconsistency. Raffle #642747. The app said I lost and had a negative net profit, but the website said I won and had a positive net profit. This time, the app was wrong, Yay!
When did you seen this inconsistency first time (just after bought tickets or when viewed history list)? I just looked into your account from my phone and seen "Win" result for this raffle as it must be. BTW, right after your previous report I have updated server scripts to fix username case-sensitiveness bug and may be your seen it before fix. Please check again.
I saw it after checking the history. I was the one who started that game, so there wasn't a result right away. It still says I lost on the app


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 19, 2013, 07:20:05 PM
I saw it after checking the history. I was the one who started that game, so there wasn't a result right away. It still says I lost on the app
Very strange. Could you click Refresh in context menu and provide new screenshot?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 19, 2013, 07:39:43 PM
I signed in from Android 2.3 emulator using your username and results seems to be correct.
P.S. May be you see wrong Raffle ID on the website?

https://peerbet.org/img/peerbet_ryland.png


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Ryland R. Taylor-Almanza on February 19, 2013, 07:43:03 PM
Very strange. Could you click Refresh in context menu and provide new screenshot?
https://i.imgur.com/HIKA4Qd.jpg

Refreshed a few times, but same result.

I signed in from Android 2.3 emulator using your username and results seems to be correct.
P.S. May be you see wrong Raffle ID on the website?
Raffle id is the same on the website and the app.

I'm a little curious as to how you signed in with my account. You aren't storing passwords in plain text, are you?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 19, 2013, 07:48:31 PM
I'm a little curious as to how you signed in with my account. You aren't storing passwords in plain text, are you?
I store passwords in hashed form. When I need to login into someone's account I can save his password's SHA value, temporarily replace it with the hash of my password, login than restore original SHA.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: debianlinux on February 19, 2013, 09:46:44 PM
Feature Request: When I buy raffle tickets that do not end the raffle and then refresh the raffle screen it would be nice to be able to see that I am already bought into those raffles that have not ended. As it is now, I have to tap into a given raffle in order to discover on the screen that I already tickets in it.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 19, 2013, 10:02:54 PM
Feature Request: When I buy raffle tickets that do not end the raffle and then refresh the raffle screen it would be nice to be able to see that I am already bought into those raffles that have not ended. As it is now, I have to tap into a given raffle in order to discover on the screen that I already tickets in it.
I understand what do you want. It require API update and will be ready with next version after few days.
Right now you can see incomplete raffles by clicking "Show history" in the context menu.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: ninjaboon on February 20, 2013, 03:04:42 AM
I would love to test your APK on my Sony Xperia ARC S.
username: ninjaboon.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: ed8t on February 20, 2013, 08:05:21 AM
try to use on my samsung galaxy nexus
username: ed8t


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: honolululu on February 20, 2013, 09:07:13 AM

A button to get back to the raffle list after creating a raffle would be nice.
Why not to use hardware "Back" button?


[/quote]

Doesn't that take you back to the raffle creation screen?  I wasn't sure if the raffle was made or not, after I bought a ticket and then hit the back button.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: lovenlifelarge on February 20, 2013, 02:00:26 PM
My username is : lovenlifelarge

& u can deposit my coin here :

1AwTmKJmbJmjDJaWuUZncDRaeUXtUFP6T9

Many thanks, I look forward to having a bet or 2.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: dascampman on February 20, 2013, 09:21:50 PM
I tried from my
moto photon
running
icecream sandwich
Username dascampmann
thanks looks great


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Pepaco on February 20, 2013, 10:41:58 PM
User: Pepaco
Working perfectly fine in my Sony Ericsson Xperia X8!!! :D


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: luyten on February 20, 2013, 11:04:46 PM
username: luyten

testing on a Samsung Galaxy Tab 2 10.1 ;D


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: salfter on February 21, 2013, 01:17:50 AM
We are giving away 0.01 BTC for free to each user without any wagering requirements. Your just have to install app on your device, sign in and write your Peerbet username in this thread.

Done...username is salfter, same as it is here.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Kasgel on February 21, 2013, 10:11:07 AM
username is kasgel
I will be waiting for 0.01 BTC :)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Regent on February 21, 2013, 11:28:49 AM
My username is Regent
:)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: sifo on February 21, 2013, 12:28:37 PM
Username: sifo
I'm testing it on HTC Wildfire S. So long it's working fine.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Benja on February 21, 2013, 04:52:50 PM
Looks great on HTC Desire!
Username: Benja
192wpVndCkNynXatWCMERKU2QYYP21Gteb


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 21, 2013, 05:47:16 PM
New version available, added some features:
  • If you don't buy all tickets in the raffle, when you load active raffle list this raffle will be highlighted.
  • Now you can transfer funds to other users from the app.
  • When you click on some chat message, a popup menu will appear providing easy way to reply, transfer funds to this user or open raffle if appropriate link present in the message.

P.S. Don't write Bitcoin addresses in this thread, I send free credits directly on the Peerbet account.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: twix on February 21, 2013, 06:08:35 PM
As you provided the source, I investigated a "Force Close" I obtained right after login while obtaining user info:

In Profile.java, displayInfo() method, line 43, Double.valueOf can't parse the string "1.82E-5" of my Globals.profitToday (Yes I know so much gain !).

This buggy value appears to be returned by your API (Captured this at runtime on Network.java, line 98):

{"username":"twix","balance":"0.00003246","spent_total":"0.01424222","won_total":"0.00476164","deposits_total":"0.00000000","withdrawals_total":"0.00000000","profit":-0.00948058,"profit_today":1.82e-5}


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 21, 2013, 06:53:46 PM
This buggy value appears to be returned by your API (Captured this at runtime on Network.java, line 98):
Thank you for the work! Bug fixed.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: twix on February 21, 2013, 09:50:10 PM
My account is now working indeed, thanks !


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Darkneo on February 22, 2013, 12:54:29 AM
I just logged in with the username darkneo


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Chris911 on February 22, 2013, 01:33:31 AM
Hi,

Great site. I installed the android app and will be glad to test it out with some credits.

Account: u271763812

Thanks


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Chris911 on February 22, 2013, 02:41:27 AM
So far, so good.

Are you planning on developing an iPhone app or would you be interested?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 22, 2013, 04:23:43 AM
Are you planning on developing an iPhone app or would you be interested?
I don't have iPhone and never programmed for it, but if you can help I would be happy.
BTW, I am planning to make website's mobile version which will be suitable for any platform.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Chris911 on February 22, 2013, 04:44:09 AM
Since you already have an API up I might do a little something when I have some free time. Currently working on an iPad app which takes up a lot of my time but we're close to a stable release so after that I might have some time.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: ChaosFox on February 22, 2013, 03:08:56 PM
Checking it out right now.  ;)

Username is: EntropiaFox


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: sifo on February 22, 2013, 07:01:16 PM
username: nina


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 22, 2013, 07:26:33 PM
username: nina
You have already received free credits with the username "sifo".


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: sifo on February 22, 2013, 08:58:16 PM
Quote
Quote from: sifo on Today at 07:01:16 PM
username: nina
You have already received free credits with the username "sifo".
Yes, but that is username of my girlfriend who has installed app on her phone and she didn't want to register on forum. So I posted here name for her.
Should I tell her to register here, or can you send her BTC without it?

Thanks.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 22, 2013, 10:04:07 PM
Yes, but that is username of my girlfriend who has installed app on her phone and she didn't want to register on forum. So I posted here name for her.
Should I tell her to register here, or can you send her BTC without it?
Let assume you are not lying... ;) Account credited.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Infinity1 on February 22, 2013, 11:39:26 PM
Username: Infinity8


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: TheJuiceBox on February 22, 2013, 11:41:59 PM
Username: thejuicebox



Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: maxcarjuzaa on February 22, 2013, 11:50:24 PM
indigo


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: sifo on February 23, 2013, 04:46:49 AM
Yes, but that is username of my girlfriend who has installed app on her phone and she didn't want to register on forum. So I posted here name for her.
Should I tell her to register here, or can you send her BTC without it?
Let assume you are not lying... ;) Account credited.

You assumed right. Thank you.
I have already bug to report, which nappened to her:
When looking to history, there was one ticket. Hitting back button caused "Unexpected error... Force application to close?" (Message was a bit differen, but it was not in english so I translated it so the meaning is still similar). When I tryied to repeat steps she did on her phone, error message did not appear, but hitting back button caused application to close. She has version 1.07.
I tried same steps on my phone, same version and it did cause application to close without error message.
I hope this is somehow helpfull.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 23, 2013, 05:33:21 AM
hitting back button caused application to close.
It is normal behavior, back button on the raffle list or history must cause app to close.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: OurSUBMARINEGo on February 23, 2013, 06:16:15 AM
Username: OurSUBMARINEGo

Thank you!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: lepirate on February 23, 2013, 10:16:00 AM
Username: piratedSwe

I really like the dark design of the app! Makes it feel as it was from a James Bond movie or something! ;D
Awesome!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 23, 2013, 08:36:47 PM
Changed behavior of the back button, now it will activate profile page instead of close (only when pressed on the raffle list or chat).


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 24, 2013, 03:40:08 AM
I cant figure out how to log in, I enter my credentials but there is no "sign in" button...

Anyway...

1CxQYrqBA39RMKPFqHTB13mcg93hkbuebG
"Sign in" button is right below password input, you cannot not to see it! Please provide screenshot.

P.S. To receive free credits you have to write Peerbet username, not Bitcoin address.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Rasko on February 24, 2013, 06:43:17 AM
Tested on my LG Double Play. Runs Fine! :)

Username: Rasko

PS It takes around 3 Confirmations to get the deposited funds to show up on the account, and not 1. :P


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: cdog on February 24, 2013, 10:18:19 AM
I cant figure out how to log in, I enter my credentials but there is no "sign in" button...

Anyway...

1CxQYrqBA39RMKPFqHTB13mcg93hkbuebG

Ah, I see with my HTC EVO Shift 4G, when I pull the keyboard out, the screen rotates and the sign in button is hidden. You might want to fix that.

I had to sign in using the onscreen keypad, which isnt optimal. It seemed like it made the app crash if I flipped it around a few times.

username: chronicdog


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 24, 2013, 03:59:53 PM
It takes around 3 Confirmations to get the deposited funds to show up on the account, and not 1. :P
I use third-party services for payments notifications and have set 1 confirmation, however I also noticed sometimes it may take longer.

Ah, I see with my HTC EVO Shift 4G, when I pull the keyboard out, the screen rotates and the sign in button is hidden. You might want to fix that.
On my Galaxy S2, as well as an emulator and most other users' phones app starts in the portrait mode and buttons are visible even on low resolution. If you are familiar with the Android programming look into sources please.

It seemed like it made the app crash if I flipped it around a few times.
It is a known bug when app sometimes (randomly) crashes while network request in progress and you rotate the screen. May be you know how to fix it?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: jackalope9517 on February 24, 2013, 09:44:58 PM
Hi there. Installed it on my HTC G2 and it's working fine. Although, oddly, i was only able to successfully download the app using wifi.

username: jackalope9517


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Cuxmay on February 24, 2013, 10:10:55 PM
Username = Cuxmay
Betatester on Galaxy S2, android 2.3.3


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: jackalope9517 on February 25, 2013, 01:48:48 AM
Erm, pardon me if this is a silly question, but how do I transfer my bitcoins on the app from the app to my wallet?

Thanks :)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 25, 2013, 02:27:32 AM
how do I transfer my bitcoins on the app from the app to my wallet?
Login from the website and open withdraw page.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: codebyte on February 25, 2013, 04:09:31 PM
Working good so far on Galaxy Nexus.
Username: u226502422


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: mrmoj on February 26, 2013, 02:41:03 AM
Love it!  It's a fun idea and the site is clean and slick, and the android app works great.  It's got a small installation footprint as well, perfect for my puny phone :) Thank you!

My username: mrmoj


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: mrmoj on February 26, 2013, 03:12:19 AM
Received! Thanks, guys, you're awesome.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Garr255 on February 26, 2013, 05:05:54 AM
garr255 :)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Sekioh on February 26, 2013, 08:06:06 AM
Sekioh

looks interesting, if it goes well past initial screening I'll see if I can install it on my flashed ereader (has some pseudo 1.7-2.0 mix OS from the maker) and my Jellybean Samsung Epic 4g.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: AdriKGB on February 26, 2013, 11:37:09 AM
My user is AdriKGB.

I am testing it. So far it is ok


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: paliboy on February 26, 2013, 03:55:55 PM
Looks good on my Samsung Galaxy S3 mini. I had the first version installed and now it updated itself without any problems. Do you plan to release the app on Google Play once it's tested?

my username: paliboy


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: ttyler333 on February 26, 2013, 04:01:11 PM
username: ttyler333


send em here :)  13cTqfmu7oYMck2snAHeR2C2gvk9EmgnUp


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Yurkov on February 26, 2013, 04:12:39 PM
login name:
sirnux


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 26, 2013, 04:25:32 PM
Do you plan to release the app on Google Play once it's tested?
Unfortunately Google don't allow gambling apps on the official store.

send em here :)  13cTqfmu7oYMck2snAHeR2C2gvk9EmgnUp
Free credits being send to the Peerbet account, not Bitcoin address.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: ehmdjii on February 26, 2013, 05:07:10 PM
peerbet username: ehmdjii

testing with galaxy s3

1H6ydfwjPoNRwRxg6wUEG2BvTBDNrj6xRK


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: javmarfer on February 26, 2013, 07:28:04 PM
My user name is: javmarfer
I use the App in a tablet pc A10 and runs very well.
Greatings


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: TangentX on February 26, 2013, 08:23:22 PM
u026110400 is my username


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 27, 2013, 10:38:14 PM
Made some updates requested by our users:
  • If you have "Remember password" unchecked, username will be saved but password not.
  • Fixed a bug with mBTC and ĩBTC display when you try to create a raffle from template.
  • Added option to hide games from the active raffle list where you have already bought tickets.

Please install an update (http://peerbet.org/download/Peerbet.apk)!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: joevmm on February 28, 2013, 12:07:33 AM
username: joevmm.. pl0x


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: spudy12 on February 28, 2013, 12:32:12 AM
username: spudy12
1BgfzyAeXKdK22ZsSJDG3vB28WX8kPjLw8

looks to be a good app! works well on galaxy s3
Could do with a few more features on that chat, possibly some different skins to? just a thought!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on February 28, 2013, 01:17:57 AM
Could do with a few more features on that chat, possibly some different skins to? just a thought!
What concrete features Peerbet chat is missing now? BTW, I am a programmer, not a professional designer.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Kansattica on February 28, 2013, 06:05:11 AM
If this is still going:

kansattica

code in signature.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: spudy12 on February 28, 2013, 11:22:39 AM
Could do with a few more features on that chat, possibly some different skins to? just a thought!
What concrete features Peerbet chat is missing now? BTW, I am a programmer, not a professional designer.

Possibility to private chat I  was thinking, just a thought though.
Skins I was just thinking that from experience, some people prefer a 'light' colored theme to a dark one, again just my 2 cents :)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: panonym on March 01, 2013, 03:55:52 AM
login: panonym

For 0.01BTC, Ok to report major problem (if any) or what I feel like to.
Good thing that withdrawal can be free (if wait 24h, max). Keep it that way.

I wish to take out ~0.005BTC from an instawallet before testing.
Please directly send the 10mbtc here: 12V4ckadDTRtuJE1VEnabStWM7kiEzecit
(so 'avoid +24h delay)
Thanks.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 01, 2013, 04:37:44 AM
Please directly send the 10mbtc here: 12V4ckadDTRtuJE1VEnabStWM7kiEzecit
(so 'avoid +24h delay)
As I wrote many times earlier, I send this bonus only to the Peerbet account. However, you can withdraw it at any time!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: prophecynine on March 01, 2013, 07:29:06 AM
username: sevenus
i installed it on a samsung galaxy ace II.
seems to work ok so far, although it says the minimum prize is 0.0001 BTC. I never saw that on the site...
also, when I try to use a decimal in the expiry (eg. 0.5 or .5 days), it seems like it won't accept it as input (it just ignores it and ends up with 5 days)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: mrmoj on March 01, 2013, 08:53:47 AM
username: mrmoj

I installed the update apk today (the one you announced yesterday I believe) but now I get force-closes after login.  It draws the three menus at the bottom (Profile/Raffles/Chat I believe) but FC before any raffles are displayed.  I tried three times, and it happened each time... prior version didn't :)

I'm running android 2.2.2, it's an LG Thrive (LG-P506).

Thanks!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 01, 2013, 03:46:18 PM
seems to work ok so far, although it says the minimum prize is 0.0001 BTC. I never saw that on the site...
These is no minimum prize limit on the website, but CAPTCHA appears if you try to create raffle below 0.0001 BTC. We had to set it due to excessive bot activity.

also, when I try to use a decimal in the expiry (eg. 0.5 or .5 days), it seems like it won't accept it as input (it just ignores it and ends up with 5 days)
Expiration time can be set only in integer days.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: panonym on March 01, 2013, 03:49:30 PM
Please directly send the 10mbtc here: 12V4ckadDTRtuJE1VEnabStWM7kiEzecit
(so 'avoid +24h delay)
As I wrote many times earlier, I send this bonus only to the Peerbet account. However, you can withdraw it at any time!

Apologies for not reading enough.
0.01BTC well receive on the app.
I didn't find a way on the app to withdraw to an external wallet. Only between peerbet user.
'had to use the website.
Not the end of the world, but the more choice the better.

Let's go for the wait.
Like this the withdraw is tested once more.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 01, 2013, 03:55:32 PM
I didn't find a way on the app to withdraw to an external wallet. Only between peerbet user.
Yes, withdraw is available only from the website.
We need to let users to view ads a bit  ;)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 01, 2013, 04:18:54 PM
I installed the update apk today (the one you announced yesterday I believe) but now I get force-closes after login.  It draws the three menus at the bottom (Profile/Raffles/Chat I believe) but FC before any raffles are displayed.  I tried three times, and it happened each time... prior version didn't :)

I'm running android 2.2.2, it's an LG Thrive (LG-P506).
Just installed latest version on the Android 2.2 emulator and tried to login, all works fine! Please try removing app and installing again.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: mrmoj on March 01, 2013, 11:10:16 PM
You bet, will do that now.  Just a thought -- crappy internet in alaska, goes out (and when it's on, 10%-20% packets are lost) -- does your app properly handle loss of network after login?

Will report back!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 01, 2013, 11:22:03 PM
does your app properly handle loss of network after login?
Peerbet Android app transfers data from/to server in compressed format therefore traffic consumption must be very small.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: RicRock on March 02, 2013, 04:49:50 AM
Username: RicRock

Testing on Galaxy S3


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: ariok27 on March 02, 2013, 07:01:31 AM
Username: ariok27

Testing on a fairly old LG-E510g


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: jsCoin on March 02, 2013, 08:48:26 AM
coinbot

Thank you.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Isamaru on March 02, 2013, 09:17:26 AM
Username: Isamaru
@ SE XPERIA Play


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: liagoo on March 02, 2013, 07:12:06 PM
Username: liagoo

Oh boy, thanks! I'll start the testing as soon as possible.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: denshai on March 02, 2013, 07:37:38 PM
username: denshai

pleaaase!:D


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: reetty on March 02, 2013, 07:56:39 PM
username: reetty

sweet! thank you for this. Will really help me out to get started.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: XEP3HAET on March 02, 2013, 09:12:37 PM
Username: xep3haet

So far so good. Played around a little bit with super small bets, but would love that 0.01 BTC bonus to feed my newly found gambling interest.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Marker88 on March 02, 2013, 10:53:23 PM
username: Marker88


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: uldrau on March 03, 2013, 12:23:34 AM
username: uldrau

keep flopping dude, you're awesome!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Letona on March 03, 2013, 02:34:21 AM
username: letona

pleaseee.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: jv27 on March 03, 2013, 03:31:41 AM
username: jv27

Seems stable and well structured.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: respcelasa on March 03, 2013, 05:23:05 AM
Username: naran

thank you


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: bitspill on March 03, 2013, 06:31:55 AM
Samsung Galaxy Tab 2 running Android 4.1.1


Application seems stable so far. One bonus feature that while not necessary would be nice is after creating an account it would automatically log you in, rather than make you type your password again and to log in.

user: bitspill


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: betronic on March 03, 2013, 07:26:43 AM
oh yes! please and thank you!

username: betronic


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Amitabh S on March 03, 2013, 03:09:50 PM
Netpeer


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: TiWu on March 03, 2013, 04:43:21 PM
Just installed on Galaxy Nexus. Seems to work fine.

Username: psych


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: reb73 on March 03, 2013, 06:19:03 PM
Installed on Google Nexus 4!

UserName : reb73

Thanks!

Edit: Much appreciated, giant dragon!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: templeofshadows on March 04, 2013, 12:02:20 AM
UserName : templeofshadows

Thanks!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: frga13 on March 04, 2013, 01:39:49 AM
username: frga13

HTC one S


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: stamat on March 04, 2013, 02:27:33 AM
Username: stamat


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: DeviledMoon on March 04, 2013, 03:33:19 AM
DeviledMoon

HTC Desire Z


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Future Nyan Cat on March 04, 2013, 04:45:45 PM
Tikiana


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Ramokk on March 05, 2013, 11:44:15 AM
Ramokk


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: alcar on March 05, 2013, 07:26:44 PM
alcar


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: jurisg on March 05, 2013, 08:19:29 PM
salna


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: gonzoflip on March 05, 2013, 08:25:46 PM
Installed and works fine one AT&T One X
With CM10.1-20130228-NIGHTLY-evita
gonzoflip


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Amarite1 on March 05, 2013, 09:25:31 PM
Amarite1

Works fine on 4.1.1


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: peer777 on March 05, 2013, 11:50:05 PM
peer777

Transfered funds, gambled on Android, and in browser - lost 2 bets, won 1 bet.
Smooth running app.

Waiting for 0.01BTC To try more  8)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 05, 2013, 11:53:51 PM
Waiting for 0.01BTC To try more  8)
Sorry, but this bonus is one-time ;)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: peer777 on March 06, 2013, 08:02:57 AM
Quote
Sorry, but this bonus is one-time  ;)

You didn't quite understood, I transferred MY own money  0.00050000 BTC to make bets and test your app, as I wrote before I won 1 bet and lost two bets in the course of testing.
I haven't received YOUR 0.01BTC bonus yet (that is why I am posting my username - peer777 here in this topic)
to receive bonus and play some more. (I know it is one time only bonus)

I hope this resolves misunderstanding, thanks in advance!  :)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 06, 2013, 03:58:12 PM
You didn't quite understood, I transferred MY own money  0.00050000 BTC to make bets and test your app, as I wrote before I won 1 bet and lost two bets in the course of testing.
I haven't received YOUR 0.01BTC bonus yet (that is why I am posting my username - peer777 here in this topic)
to receive bonus and play some more. (I know it is one time only bonus)

I hope this resolves misunderstanding, thanks in advance!  :)
Oh sorry, I thought that you played with the bonus. 0.01 BTC added to your account now!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: peer777 on March 06, 2013, 09:27:16 PM
Thanks, I received money!
I am glad that we resolved this misunderstanding  :)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: dougiedj on March 06, 2013, 11:56:44 PM
 dougieddj



Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: _JDB on March 07, 2013, 01:16:10 AM
Username: u517744269

When I switch from touch to keyboard mode with my HTC Evo Shift, the "Create Account" and "Login" buttons do not show.

I'm also getting this error:

Quote
E/AndroidRuntime(26913): FATAL EXCEPTION: main

E/AndroidRuntime(26913): java.lang.IllegalArgumentException: View not attached to window manager

E/AndroidRuntime(26913):    at android.view.WindowManagerImpl.findViewLocked(WindowManagerImpl.java:391)

E/AndroidRuntime(26913):    at android.view.WindowManagerImpl.removeView(WindowManagerImpl.java:236)

E/AndroidRuntime(26913):    at android.view.Window$LocalWindowManager.removeView(Window.java:441)

E/AndroidRuntime(26913):    at android.app.Dialog.dismissDialog(Dialog.java:335)

E/AndroidRuntime(26913):    at android.app.Dialog.access$000(Dialog.java:92)

E/AndroidRuntime(26913):    at android.app.Dialog$1.run(Dialog.java:155)

E/AndroidRuntime(26913):    at android.app.Dialog.dismiss(Dialog.java:325)

E/AndroidRuntime(26913):    at org.peerbet.peerbet.Network.onPostExecute(Network.java:115)

E/AndroidRuntime(26913):    at android.os.AsyncTask.finish(AsyncTask.java:417)

E/AndroidRuntime(26913):    at android.os.AsyncTask.access$300(AsyncTask.java:127)

E/AndroidRuntime(26913):    at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java:429)

E/AndroidRuntime(26913):    at android.os.Handler.dispatchMessage(Handler.java:99)

E/AndroidRuntime(26913):    at android.os.Looper.loop(Looper.java:150)

E/AndroidRuntime(26913):    at android.app.ActivityThread.main(ActivityThread.java:4306)

E/AndroidRuntime(26913):    at java.lang.reflect.Method.invokeNative(Native Method)

E/AndroidRuntime(26913):    at java.lang.reflect.Method.invoke(Method.java:507)

E/AndroidRuntime(26913):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)

E/AndroidRuntime(26913):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)

E/AndroidRuntime(26913):    at dalvik.system.NativeStart.main(Native Method)

My phone doesn't like the BTC Wallet application either.  HTC EVO Shift 4G (http://www.htc.com/us/support/news.aspx?p_id=581&p_name=htc-evo-shift-4g-sprint)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Rinnosuke on March 07, 2013, 08:26:09 AM
Rinnosuke


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: MasonIII on March 07, 2013, 09:09:14 AM
MasonIII


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Newar on March 07, 2013, 12:19:45 PM
Newar

Does not install on Sanei N10 tablet. The Install button is there, but it won't do the install.

Installs fine on Samsung Galaxy Y, however after entering UID and PW there is no button that would let me sign in. I also see Profile etc. button but they do nothing. I can change the prerences via the hardware menu button.

Let me know if you need more info.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 07, 2013, 03:53:56 PM
Installs fine on Samsung Galaxy Y, however after entering UID and PW there is no button that would let me sign in. I also see Profile etc. button but they do nothing. I can change the prerences via the hardware menu button.

Let me know if you need more info.
Could you make a screenshot?

P.S. I see now that Android platform fragmentation is not a myth as I thought earlier.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Newar on March 07, 2013, 05:17:04 PM
Installs fine on Samsung Galaxy Y, however after entering UID and PW there is no button that would let me sign in. I also see Profile etc. button but they do nothing. I can change the prerences via the hardware menu button.

Let me know if you need more info.
Could you make a screenshot?

P.S. I see now that Android platform fragmentation is not a myth as I thought earlier.
I hope this works: http://cubeupload.com/im/BB3zGj.png

What confuses me is that it won't install on the tablet at all.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 07, 2013, 08:25:13 PM
Installs fine on Samsung Galaxy Y, however after entering UID and PW there is no button that would let me sign in. I also see Profile etc. button but they do nothing. I can change the prerences via the hardware menu button.

Let me know if you need more info.
Could you make a screenshot?

P.S. I see now that Android platform fragmentation is not a myth as I thought earlier.
I hope this works: http://cubeupload.com/im/BB3zGj.png

What confuses me is that it won't install on the tablet at all.
Login button just don't fits into your screen due to low resolution. I will add scrolling in new version.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: LordCadaver on March 07, 2013, 09:07:51 PM
username: lordc


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Newar on March 08, 2013, 07:46:32 AM
Installs fine on Samsung Galaxy Y, however after entering UID and PW there is no button that would let me sign in. I also see Profile etc. button but they do nothing. I can change the prerences via the hardware menu button.

Let me know if you need more info.
Could you make a screenshot?

P.S. I see now that Android platform fragmentation is not a myth as I thought earlier.
I hope this works: http://cubeupload.com/im/BB3zGj.png

What confuses me is that it won't install on the tablet at all.
Login button just don't fits into your screen due to low resolution. I will add scrolling in new version.
How about allowing to login by hitting "Enter"?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: viboracecata on March 08, 2013, 08:22:45 AM
username: Loong
thanks.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Camello_AR on March 09, 2013, 07:43:32 PM
Username: Camello

Phone Motorola Milestone 2 (or Droid 2) With 2.3.6 gingerbread

When the screen is in landscape mode, with slider phisical keyboard open, The login screen is too large to fit in screen, and canīt scroll them. I must to close keyboard, and put phone in portrait mode to get full login screen (but mi software keyboard is not accurate due large fingers)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 09, 2013, 08:03:41 PM
When the screen is in landscape mode, with slider phisical keyboard open, The login screen is too large to fit in screen, and canīt scroll them. I must to close keyboard, and put phone in portrait mode to get full login screen (but mi software keyboard is not accurate due large fingers)
I already know this bug, in the next version scrolling will be added.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: twitch on March 09, 2013, 10:36:44 PM
BaconBomb. Thanks.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: equivalent on March 09, 2013, 11:40:39 PM
equivalent

Thanks!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: ancow on March 10, 2013, 12:13:58 AM
We are giving away 0.01 BTC for free to each user without any wagering requirements. Your just have to install app on your device, sign in and write your Peerbet username in this thread.

Mine's "ancow" there, too.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: tacoman359 on March 10, 2013, 07:00:53 AM
tacoman359

Running some off-brand Chinese tablet (Ainol Novo 7 Advanced)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: AzNmeowmeow on March 10, 2013, 11:10:13 AM
AzNmeowmeow


thanks a ton man


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: weirdthall on March 10, 2013, 03:55:09 PM
Username: Weirdthall

so far no issues on android




EDIT: credit applied to account -  many thanks!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 11, 2013, 09:17:42 PM
Update available!

  • Added russian locale.
  • Added scrolling to fit layouts in small resolution screens.
  • Enabled raffle's activity auto close when you click "Use as template".


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: equivalent on March 12, 2013, 01:18:17 AM
Thanks, just to let you know the new version will only run for me when started in portrait orientation. When started in landscape, I get 'unfortunately, peerbet has stopped' (this is without changing orientation during loading). The app is still in the recent apps list though, and if tapped on in portrait, it will run! (nexus 7)

Hope this helps!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 12, 2013, 04:07:26 AM
Thanks, just to let you know the new version will only run for me when started in portrait orientation. When started in landscape, I get 'unfortunately, peerbet has stopped' (this is without changing orientation during loading). The app is still in the recent apps list though, and if tapped on in portrait, it will run! (nexus 7)
I found a bug that even didn't let to change orientation to landscape in version 1.10. It is fixed now.

But there is another known bug that cause app crash is you change orientation while network request in progress. Do you know how to fix it?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: mareo87 on March 12, 2013, 05:22:18 AM
u286098160


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: equivalent on March 12, 2013, 10:07:00 AM
Quote from: giantdragon
But there is another known bug that cause app crash is you change orientation while network request in progress. Do you know how to fix it?


No, sorry, I only mentioned it to distinguish from my problem, which you now fixed with the latest update, thanks, and sorry I couldn't help with the other bug!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Dreamweaver on March 12, 2013, 10:19:06 PM
username: RagingMachine
I made this account a long while ago, but i wasn't out of "newbie" status then xD


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: nimda on March 13, 2013, 12:39:58 AM
nimda


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: urlcool on March 13, 2013, 12:56:28 AM
I am proud to release first public beta of the Peerbet Android app. We are looking for the beta testers who will install it on the smartphone or tablet, try to play and report about bugs have been found and suggestions to improve. Our app is 100% free and open-source.

We are giving away 0.01 BTC for free to each user without any wagering requirements. Your just have to install app on your device, sign in and write your Peerbet username in this thread.

Install package: http://peerbet.org/download/Peerbet.apk
Sources: http://peerbet.org/download/Peerbet_src.zip

https://peerbet.org/img/droid3/qrcode.gif

Hello

Works on Nexus 7 fine.

Username: urlcool
Bitcoin:17CEJc74AK7GWMSxof8bRFv3c2SCiTTQNL


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: ssbtoday on March 13, 2013, 06:18:55 AM
Username: ssbtoday
BTC Address: 19wAGPypBu61s28k1hRx5nF6EZMTfMiF5b

Going to check this on my Nexus 7 and my Kindle Fire (Flashed to JB rom)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: pandalone on March 13, 2013, 07:49:11 AM
pandalone
19f6gmgRecnBfkFVTHvP3W5SXr7xxjF8Hp


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: fsb4000 on March 13, 2013, 08:59:29 AM
fsb4000
BTC : 1QH5d8cSEhGtosGFstNzx6SPDhBbRwDYFQ
Going to check this on my Momo9 android pad( Android 2.3.4)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Raoul Duke on March 13, 2013, 04:07:42 PM
Leaving this here in the name of the Newbie.

https://bitcointalk.org/index.php?topic=144066.0

can some one quote me here pls... i really wanna test this app but still havn't hit 4 hours...

username - turkdragon13


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: nimda on March 14, 2013, 12:07:21 AM
Quote
Spent total:   0.01814809 BTC
Won total:   0.01896000 BTC
With most likely more than 100 bets, and finally out of the red after a dip to < 50%, I'm going to play it safe and withdraw.

You may not have made me a gambler, but if I was one, I'd use this app. Advice: add a "buy all" button like on the main site, so it doesn't take 2 taps to play.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: vellen on March 14, 2013, 01:35:36 AM
Login: vellen


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: payb.tc on March 14, 2013, 01:52:03 AM
Hi,

Can you quote me here? https://bitcointalk.org/index.php?topic=144066.0

Username: moot
Bitcoin address: 1P1VsCSANHAeFmU2x8MDaDyxmSVNwaqWz1


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: fsb4000 on March 14, 2013, 04:56:05 AM
payments over?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 14, 2013, 05:05:17 AM
payments over?
Payments still active.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: bobbit on March 14, 2013, 01:32:15 PM
username: peerbit
Thanks


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Lajci on March 14, 2013, 03:06:04 PM
Name : Lajci
Bitcoin : 1JCA2bTCSXVtKiWYiQG3PrSuqNdtkGVN2


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: sebasimp on March 14, 2013, 10:11:01 PM
sebasimp


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Dare on March 15, 2013, 12:12:25 AM
Username: Dare
Bitcoin: 1M8oUcBnkRDEhWWgV8ZXLTB6p1mgnejVbX

The app is great, though game links appear as web links instead of just the game number like the web client. They work fine, just a appearance thing. Unrelatedly, I'd like to see a way for users that played without an account at first to transfer their long-running raffles (like the 10K ticket ones) to a regular account when they make one. It won't affect most users, but it could be helpful for some.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 15, 2013, 01:46:46 AM
Unrelatedly, I'd like to see a way for users that played without an account at first to transfer their long-running raffles (like the 10K ticket ones) to a regular account when they make one.
Username is being used as primary key. Although MySQL supports cascade updates in associated tables, I have never tested it and fear to broke database's integrity.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: yudeshui021 on March 15, 2013, 11:31:56 AM
Username: yudeshui021
BTC Address: 1LiYRihbtq2Foi2brtdnjzXXPjrcoz5dXa


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Shadow714 on March 15, 2013, 01:48:12 PM
Shadow714


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: mical_2 on March 16, 2013, 02:10:37 PM
Mical_2

Thanks for the chance to test.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: manolo on March 16, 2013, 10:18:25 PM
manolo
16Egi6wdXd3KfNiQQeHkepd7S9gPnVo7Y5


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: sunnylqm on March 18, 2013, 07:20:48 AM
id:sunnylqm

BTC Address:1NFG7qaWBjsAKZJnWHqrm8cGLmEXNfDCxX

thks!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: harningt on March 19, 2013, 01:45:45 AM
User:
harningt

testing the apps out  looks good so far


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: noodleman on March 19, 2013, 02:06:50 AM
peerbet username :   noodleman

Great software . doing the updates . using the chat . no problem so far .

I m hooked  ;-)


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 19, 2013, 02:17:56 AM
Are anybody working now on the Peerbet app or website translation? Let me know if interested, I can give you free credits.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: viboracecata on March 19, 2013, 10:22:23 AM
Are anybody working now on the Peerbet app or website translation? Let me know if interested, I can give you free credits.
I can do the translation.
Where can I find the manual?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 19, 2013, 03:38:44 PM
Are anybody working now on the Peerbet app or website translation? Let me know if interested, I can give you free credits.
I can do the translation.
Where can I find the manual?
You need to translate website's locale files (http://peerbet.org/download/locale.zip) and "String.xml" file from Android app's sources (http://peerbet.org/download/Peerbet_src.zip).


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: codebyte on March 19, 2013, 10:00:17 PM
Are anybody working now on the Peerbet app or website translation? Let me know if interested, I can give you free credits.
I can do the translation.
Where can I find the manual?
You need to translate website's locale files (http://peerbet.org/download/locale.zip) and "String.xml" file from Android app's sources (http://peerbet.org/download/Peerbet_src.zip).

What languages do you need and how much would you pay for a translation?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: HeroC on March 20, 2013, 01:10:14 AM
HeroC

Address in SIG
So far no problems. Add feature to redeem code.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 20, 2013, 01:21:25 AM
What languages do you need and how much would you pay for a translation?
Peerbet doesn't have house edge, so we cannot afford much. May be 0.1 BTC, or ad space on Peerbet or Daily Bitcoins?
What languages can you translate?


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: viboracecata on March 20, 2013, 03:15:21 AM
I can translate them to Chinese.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 20, 2013, 05:40:38 AM
I can translate them to Chinese.
I will be very thankful!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: codebyte on March 20, 2013, 10:35:49 AM
What languages do you need and how much would you pay for a translation?
Peerbet doesn't have house edge, so we cannot afford much. May be 0.1 BTC, or ad space on Peerbet or Daily Bitcoins?
What languages can you translate?

I've sent you a PM.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: johnlu on March 20, 2013, 02:30:05 PM
my user is johnlu


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: iusecoins on March 20, 2013, 05:05:48 PM
Working good on Sony Xperia tipo

My username: u686524707


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: FirewallXIII on March 20, 2013, 07:06:29 PM
Username: firewallxiii

Thanks!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: du0001en on March 20, 2013, 07:12:19 PM
id: du0001en

address: 1DfzWt9SoXrV34UgLxBr9SWJw2xegJ8F66

thanks!


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: techsavver on March 20, 2013, 08:44:11 PM
techsavver


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: graghav2010 on March 20, 2013, 08:46:08 PM
techsavvers


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: giantdragon on March 20, 2013, 08:51:19 PM
techsavvers
Sorry, only one bonus for each user.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: bit_wizard on March 20, 2013, 10:32:08 PM
bit_wizard


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: erschiessen on March 21, 2013, 01:37:37 AM
erschiessen


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: supersquish on March 21, 2013, 01:38:52 PM
superok


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: cross1943 on March 21, 2013, 02:35:34 PM
username: cross1943
thanks.


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: Kasu on March 21, 2013, 07:25:59 PM
Kasu


Title: Re: Looking for Peerbet Android app beta testers - free Bitcoins available
Post by: mokahless on March 22, 2013, 01:25:39 AM
username: mokahless


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: giantdragon on March 22, 2013, 02:23:38 AM
We believe that current version is stable enough for real play and can finish our beta-testing campaign.

The bonus for new Android app users becomes permanent, however we need to adjust it with the Bitcoin price and our revenue - now it is set to 0.001 BTC.
If you want more free Bitcoins to play, earn them by translating Peerbet website and app (https://bitcointalk.org/index.php?topic=129620.msg1656057#msg1656057)!


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: dadri on March 22, 2013, 11:48:27 AM
We believe that current version is stable enough for real play and can finish our beta-testing campaign.

The bonus for new Android app users becomes permanent, however we need to adjust it with the Bitcoin price and our revenue - now it is set to 0.001 BTC.
If you want more free Bitcoins to play, earn them by translating Peerbet website and app (https://bitcointalk.org/index.php?topic=129620.msg1656057#msg1656057)!

Oh no  :-[
Without the newbie-limitation I would get the old bonus  >:(
Well... my usual bad luck...


EBS24


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: Dreadful on March 22, 2013, 11:21:08 PM
USERNAME = Dreadful

Took 2 days to get off newbie as well as the user above.


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: giantdragon on March 26, 2013, 06:12:40 PM
Just want to remind that 0.001 BTC bonus for new Android app users is still in force!


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: aorith on March 28, 2013, 12:46:51 PM
username: aorith

phone: Xiaomi MiOne

All is working great, app looks nice, I have terrible luck.


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: sir.humus on March 28, 2013, 10:39:59 PM
sir.humus
Thanks!


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: divan0w on April 01, 2013, 08:30:40 PM
divan0w
14bgPCQP79TRPUPvg5mVt7QUFPpFz3yYMn


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: RFDZ on April 03, 2013, 06:27:46 PM
My username is droidmanX
Looking forward to some btc to win.


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: Craftyman on April 09, 2013, 05:59:29 AM
User: yz50


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: asc366 on April 26, 2013, 08:20:35 PM
Just want to remind that 0.001 BTC bonus for new Android app users is still in force!

Still? I just made a new account, but no BTC there. username's the same as on the forum here; asc366


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: giantdragon on April 27, 2013, 01:40:34 AM
Just want to remind that 0.001 BTC bonus for new Android app users is still in force!
Still? I just made a new account, but no BTC there. username's the same as on the forum here; asc366
Bunus is being sent manually. Just credited your account.


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: asc366 on April 27, 2013, 11:19:40 AM
Just want to remind that 0.001 BTC bonus for new Android app users is still in force!
Still? I just made a new account, but no BTC there. username's the same as on the forum here; asc366
Bunus is being sent manually. Just credited your account.

I see! Awesome, let's bet away! ;-) Thank you sir!


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: mcb1221 on April 29, 2013, 08:38:51 AM
mcb1221


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: zezeto on April 30, 2013, 05:20:42 AM
Username: u2586256846

Suggestion: can you add the option to redeem coupons from the Android app?


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: giantdragon on April 30, 2013, 02:16:08 PM
Suggestion: can you add the option to redeem coupons from the Androip app?
I will make app's update next month when have free time, this feature also will be included.

you told me via pm that you alreadys send me but i did not recieved anything.
It was some glitch, now credits added.


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: 0gopher0 on May 02, 2013, 01:58:10 AM
user: gopher


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: Aryetsok on June 21, 2013, 03:43:06 PM
user: Aryetsok


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: mscharleneb on June 25, 2013, 09:51:42 AM
Signed up on Peerbet Android App with username - intricatexlaydee

Thank you


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: n0ne on July 07, 2013, 06:37:18 AM
Got the app, username: n0ne

Looks great. ;D


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: vellen on July 08, 2013, 10:47:53 AM
u158189030
u753038719
u563033298


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: giantdragon on July 08, 2013, 03:08:22 PM
u158189030
u753038719
u563033298
You can receive only one bonus. Sent to first account.


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: rocketcoins on July 09, 2013, 12:36:02 PM
username:rockets

Thanks


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: thisisgil on July 09, 2013, 01:47:46 PM
Done and done!

 User thisisgil

Thanks!


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: fildza on July 16, 2013, 12:52:08 PM
username : fildza

thanks


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: Big boss on July 18, 2013, 07:02:49 AM
username : Bigboss
thanks


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: jefe541 on July 19, 2013, 06:45:49 PM
Jefe541


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: bobbo13 on July 26, 2013, 01:20:05 PM
Bobbo13


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: tspacepilot on July 27, 2013, 06:07:23 PM
We are proud to announce Peerbet Android app! Current version is stable enough for real play, however it is impossible to test it on all Android devices and we will be appreciated for your bug reports, as well as suggestions to improve. Our app is 100% free and open-source.

We are giving away 0.001 BTC for free to each user without any wagering requirements. Your just have to install app on your device, sign in and write your Peerbet username in this thread.

Install package: http://peerbet.org/download/Peerbet.apk
Sources: http://peerbet.org/download/Peerbet_src.zip

https://peerbet.org/img/droid3/qrcode.gif


Installed on my droid, created tspacepilot.  Thank you.


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: foom on July 28, 2013, 07:21:29 PM
Installed, created user 'foom': thx!


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: tspacepilot on August 07, 2013, 01:54:19 AM
Hi, I installed and tried out your app.  I'm confused about one thing though.  Your website suggests that we can withdraw any amount.  However, I don't see that option on the android app.  I wanted to cash out some btc and I only see the option to transfer to another use name.  What am I missing?

Thanks!


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: giantdragon on August 07, 2013, 01:58:42 AM
Hi, I installed and tried out your app.  I'm confused about one thing though.  Your website suggests that we can withdraw any amount.  However, I don't see that option on the android app.  I wanted to cash out some btc and I only see the option to transfer to another use name.  What am I missing?
Withdrawals are available only on the Peerbet website.


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: tspacepilot on August 08, 2013, 01:20:56 AM
Yes I see.  I logged into the website and I was able to request a withdrawl.  I didn't click the instant payout so I'm still waiting to actually see the 0.002 in my wallet :).  But I suppose it will be along soon enough.  Thanks for the quick reply!


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: giantdragon on August 08, 2013, 04:41:40 AM
I logged into the website and I was able to request a withdrawl.  I didn't click the instant payout so I'm still waiting to actually see the 0.002 in my wallet :).  But I suppose it will be along soon enough.  Thanks for the quick reply!
We send Bitcoins and Inputs.io payments at the same time each 24 hours.


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: tspacepilot on August 08, 2013, 08:19:49 PM
I logged into the website and I was able to request a withdrawl.  I didn't click the instant payout so I'm still waiting to actually see the 0.002 in my wallet :).  But I suppose it will be along soon enough.  Thanks for the quick reply!
We send Bitcoins and Inputs.io payments at the same time each 24 hours.
Indeed I received the coins last night.  Thanks for the trial.

As far as feedback, I like that your site doesn't have a house edge, but I found that only doing numerical raffles was a little boring.  Maybe some sports books or something to change things up would help.

Best,


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: giantdragon on August 09, 2013, 04:26:27 AM
Maybe some sports books or something to change things up would help.
Operating sports booking requires a lot of manual work so it is impossible without house edge.


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: meelook on September 09, 2013, 03:28:02 AM
username:
bootaka123

 ::) ::) ::)


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: golikcoin on September 09, 2013, 11:13:20 AM
user: golikcoin

 ;D


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: giantdragon on September 09, 2013, 06:06:03 PM
Is this still going on? If so, I signed up with jeffreylin.
You should ask Bit777.


Title: Re: Peerbet Android app - free Bitcoins for new users
Post by: weirdthall on October 16, 2013, 11:47:41 AM
Would be a good idea to lock this thread as you don't own peerbet anymore?