Back to project page built.io-todo-android.
The source code is released under:
Terms of Use & Licensing<br />Hand Drawn Web Icon Set is free and it will always be free. You can use it for both commercial and non-commercial projects. You can modify the icons anyway you like. Howe...
If you think the Android project built.io-todo-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.todoapp; /*from w ww . jav a 2 s . c o m*/ import android.app.Application; import com.raweng.built.Built; public class TodoAppApplication extends Application{ @Override public void onCreate() { super.onCreate(); try { Built.initializeWithApiKey(getApplicationContext(), "bltad1e7e5f0cabdd5a" , "todoapp"); } catch (Exception e) { e.printStackTrace(); } } }