My app got stolen. What can I do? |
- My app got stolen. What can I do?
- Amazon Underground installed as a system app on non-rooted device. How is this possible?
- PSA: the HTC 10 might kill your app process unexpectedly when screen goes off
- Has anyone sold their app on appsbuyout.vc? How was it? How much did you get?
- Why isn't my recycler view animation working? (Supposed to animate items as you scroll)
- I think a Grid View would work for my project but I'm still quite lost when it comes to Grid Views and adapters. Or maybe there's a better solution?
- [Question] Anyone here use a modular architecture?
- Bundled Notifications in Android
- [Question] Testing/Debugging a Receiver of System Intents
- Running Tests With Robolectric and Parse SDK
- “OMG, Java is so verbose, guys”.
- Looking for help to finish my app!
My app got stolen. What can I do? Posted: 11 Dec 2016 11:41 AM PST Someone has stolen my app. They might have reversed engineered my apk from playstore. It has same code and layout. Same sound files which I had bought. What's even more frustrating is that this copy is above my app on playstore. I am not pro developer but it was my hardwork of many nights. I have reported to google but no answer yet. Is there any thing I can do? [link] [comments] | ||||||||||||||||||||||||
Amazon Underground installed as a system app on non-rooted device. How is this possible? Posted: 11 Dec 2016 11:22 PM PST | ||||||||||||||||||||||||
PSA: the HTC 10 might kill your app process unexpectedly when screen goes off Posted: 11 Dec 2016 03:02 AM PST Here's the story of my adventures with the HTC 10 unexpectedly killing my app when the screen goes off. But my process is not inactive as it holds a foreground service and a wake lock (and is steaming audio), so why it got killed ? That's because my app uses 2 different packages whose code run in the same process, using a shared userid and android:process: package1 manifest (this is the main app, also holding a foreground service):
package2 manifest (this is a plugin app for the main app declaring a service packagename1 binds to): [link] [comments] | ||||||||||||||||||||||||
Has anyone sold their app on appsbuyout.vc? How was it? How much did you get? Posted: 11 Dec 2016 11:57 PM PST | ||||||||||||||||||||||||
Why isn't my recycler view animation working? (Supposed to animate items as you scroll) Posted: 11 Dec 2016 11:40 PM PST Here's my code (from my Adapter class) : [link] [comments] | ||||||||||||||||||||||||
Posted: 11 Dec 2016 07:35 PM PST As a background on my project, I want to communicate through Bluetooth with an Arduino. I have basic communications working, and a scheme to send and receive and parse different variables (proportional gain is "p10@" so I know where it starts and ends), but the Arduino sketch has many more parameters I want to be able to see and change. I want the app to essentially be an array like this:
And so on, for maybe 15 or so variables. It's too many to use individual views, so I was hoping a GridView would be able to do it. So I've been reading through a bunch of GridView tutorials, including the official one. My first question is on the adapter, which is what creates all the elements in the GridView, correct? What I don't understand is...what's calling the methods in ImageAdapter? The GetView method is what creates every view, but what is calling it with the position, view and parent? What determines whether a new view gets put into the same row in a new column or a new row? Further, in their main Java code, this is what happens when an item is touched: Ok, when an item gets clicked, we get an "OnItemClickListener" that...doesn't return the parent, view, position and id? It's a method that's void, right? I can't quite tell what's happening in here, I reformatted it to try to make sense, but it's still hard to follow. The OnItemClickListener() calls a onItemClick method that takes in the relevant data, but when the brackets for the toast part start immediately after the method, what does that mean? That it will pass that data to whatever is in the brackets? When the buffer gets reading, I want to be able to parse that data and send it to the Brightness TextView in row 1, column 2. When the Proportional Gain Send button gets pushed, I want it to grab the string from the Proportional Gain EditText in column 3 and send it to a method that prepares it for Bluetooth communication. I don't think I have a good enough understanding on Grid Views to see if this is possible. Is it? And if so, where am I falling short in understanding it? Thanks. [link] [comments] | ||||||||||||||||||||||||
[Question] Anyone here use a modular architecture? Posted: 11 Dec 2016 05:12 PM PST I am interested to see if anyone here uses a modular architecture, specifically, not using fragments and sticking to one activity per application. My current architecture has a single Activity, and each feature/page of my app, extends from a ViewGroup. I had to write a custom back stack manager with saving states across rotations and app closures. I just insert a view into the activity and remove the old one as and when I need to, it makes it super fast, it even works with transitions. My actual custom back stack, doesn't require any design pattern, it can be used with MVP or not, but you must use view groups and a single activity. Its one line of code to setup the back stack and one line of code each time you want to insert or remove a view. Does anyone use a similar style and do you think this is all unnecessary, and I should just use fragments? or is there an existing framework or library I should have used? [link] [comments] | ||||||||||||||||||||||||
Bundled Notifications in Android Posted: 11 Dec 2016 06:16 AM PST | ||||||||||||||||||||||||
[Question] Testing/Debugging a Receiver of System Intents Posted: 11 Dec 2016 09:40 AM PST I'm developing an app that uses a receiver to know when an app is installed/uninstalled.Usign this Broadcast Action for example. My question is, is there any way to test or debug these actions? Maybe creating fake broadcasts? [link] [comments] | ||||||||||||||||||||||||
Running Tests With Robolectric and Parse SDK Posted: 11 Dec 2016 03:16 PM PST Hey guys anyone got some experience running these two? i'm currently initialising all parse items in a separate class that extends Application however when running the tests in Robolectric for an activity that isn't making use of the SDK yet, having different statements seem to make it fail So having: and having causes
Thanks! [link] [comments] | ||||||||||||||||||||||||
“OMG, Java is so verbose, guys”. Posted: 11 Dec 2016 01:34 PM PST | ||||||||||||||||||||||||
Looking for help to finish my app! Posted: 11 Dec 2016 01:30 PM PST https://github.com/mathuin/finley-breese It's a simple app that will generate custom ringtones in Morse code for folks on your contact list. Unfortunately, I am way out of practice on modern Android app design and I don't have the time or patience to write a good UI. If someone out there wants to do what I consider "the hard part", I'm happy to provide the "business logic" which is in the repo above. I would be happy to have a co-writer credit. In an ideal world, if you use the code and run ads, you'd pass along the revenue -- but the license doesn't require it, and I probably wouldn't even know if you did! [link] [comments] |
You are subscribed to email updates from Developing Android Apps. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
Note: only a member of this blog may post a comment.