java - setContentView is not working with GoogleApiClient on release apk -
i've implemented google play games api in game recently, issues appeared after that. the problem reason game not loading custom view class when start aplication , call method setcontentview() happens when build release version of apk. gv = new gameview(this); setcontentview(gv); //not loading on release version or if debuggable set true in build.gradle i tryied put line on build.gradle debuggable false the result release version started working line cant upload playstore , reason of thread obviusly because need working on playstore. some notes of test: the google play services connects both release , debug apks, in release black screen appears isntead of gameview class the setcontentview() doesn't works when running apk on release version or if debuggable set true in build.gradle. the setcontentview() works fine when running apk on debug version the setcontentview() works fine if load xml file in situations (but game doesnt uses xmls). main