Counting how many times my Android app has been opened

后端 未结 8 1222
遇见更好的自我
遇见更好的自我 2020-12-18 07:22

I am developing an android app and I want to know how many times it has been opened. Is there a way to do this?

8条回答
  •  自闭症患者
    2020-12-18 07:56

    In your Application or Activity's onCreate() method, increment a counter stored in persistent storage such as SharedPreferences.

提交回复
热议问题