• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps I AM NEWB AT APP DEVELOPMENT, PLEASE SEND HELP

aandro

Lurker
Hello kind people of androidforums!
I am tottaly new at coding. I know some java and html, but nothing serious. I am trying my best to learn how do develop an android app. I was told that the best way to do it is to pick an project and set my mind on it. I FINNALY FOUND IT GUYS. If any of you have some time and energy, I bag you to help me. I don't even know how to start. I am probably going to use MIT app inventor, as it is the easiest to use and seems really good and practical.


PROJECT I NEED HELP WITH: If you haven't heard yet, there is a new app that Supercell published preavious month. It is called Clash Royale. If you don't know it, it is basically a game in which you collect card and use them to battle other players to win throhies and chests, in which you actually get the cards. There are quite a few chests: silver, gold, magical and giant. Recently it has been dicovered that the order in which you get chests isn't actually randomised, but there is an exact list of it. The thing I want to try to do is an app, in which you would put in the last 10 chests that you recieved, and based on that, the app would return order of next chests that you will get, when will you get next giant or magical chest.

link of chest cycle:
https://docs.google.com/spreadsheets/d/152H0sXCMZRwAsnZ1wbFgIwH3jWwtNrXjbe1ToKaycuQ/pubhtml (list is reset after you fully complete the cycle)
 
I don't know this game, but if there is already a list of the chests in their set order, why do you need an app? What would the app do that you could not achieve just by looking at the list?
 
I don't know this game, but if there is already a list of the chests in their set order, why do you need an app? What would the app do that you could not achieve just by looking at the list?
If you take a look at the list you can see that there is 250 chests on it. Finding on what stage you are on takes quite a while.
 
Ok so do you want to the app to remember your progress, and tell you what comes next?
 
If want it to locate the current chest I am on and to tell me how many chests I have to open to get to the "important one"(giant,magic) , after I imput last few chests that I got
 
Last edited:
In terms of storing the big list, I'd use a string array resource.
But matching a sequence of 10 at an arbitrary point within the list, assumes that the sequence of 10 is unique, which it isn't. So that won't work.

Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
     <string-arrayname="chestlist">
        <item>Silver</item>
        <item>Silver</item>
        <item>Silver</item>
        <item>Gold</item>
        <item>Silver</item>
        <item>Silver</item>
        .........
    </string-array>
</resources>
 
Damn. I actually thought that this was an easy project to work on lol. Now I am officialy out of ideas.
 
Back
Top Bottom