I have my PROD app installed on my android phone with the package name "com.mycompany.app
". however to develop and test my app I use the package name "com.mycompany.debugapp
". in this way I can have the 2 app at the same time installed on my phone, the PROD version and the development version.
This was working great style I decide to implement billing :( from my development app, when I call querySkuDetailsAsync
, it's return me an empty list :( I guess it's because I use com.mycompany.debugapp
instead of com.mycompany.app
. Is their any way to test billing services from my development app com.mycompany.debugapp
?