ibeacon - Android Altbeacon Library BeaconSimulator on release version of application -
i want ask if there way use beaconsimulator simulate ibeacon on release version of application. displaying content based on ibeacon user sees , want show information application , example user needs turn on bluetooth etc.
i want have kind of ibeacon visible (also when bt turned of) instruct user. there way achieve ?
thanks
regards
juraj
the android beacon library's beaconsimulator automatically disabled release builds of applications. intended safety check, keep accidentally releasing code simulator active if forget disable in code.
this safety check based on applicationinfo.flag_debuggable, automatically gets set false gradle when doing release build. if want allow simulator run in release build, can try setting debuggable flag true release builds in build.gradle file this:
android { ... buildtypes { release { debuggable true } }
Comments
Post a Comment