Back to project page texting.
The source code is released under:
Free to use, distribute, do anything.
If you think the Android project texting 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.skk.texting; /*from ww w. j a v a 2 s .c o m*/ import android.app.Application; import com.skk.texting.domain.Conversation; public class TextingApplication extends Application { private Conversation currentConversation; public Conversation getCurrentConversation() { return currentConversation; } public void setCurrentConversation(Conversation currentConversation) { this.currentConversation = currentConversation; } }