Make the project compile with SDK 21 (lollipop)
authorDa Risk <da_risk@beem-project.com>
Fri, 26 Dec 2014 15:43:38 +0100
changeset 1041 025c482d5530
parent 1037 a1f3a20c87f8
child 1042 d1855d581d0a
Make the project compile with SDK 21 (lollipop)
src/com/beem/project/beem/service/aidl/IChat.aidl
src/com/beem/project/beem/service/aidl/IMessageListener.aidl
--- a/src/com/beem/project/beem/service/aidl/IChat.aidl	Tue May 14 18:24:25 2013 +0200
+++ b/src/com/beem/project/beem/service/aidl/IChat.aidl	Fri Dec 26 15:43:38 2014 +0100
@@ -56,7 +56,7 @@
     	 * Send a message.
     	 * @param message	the message to send
     	 */
-	void sendMessage(in Message message);
+	void sendMessage(in com.beem.project.beem.service.Message message);
 
 	/**
 	 * Get the participant of the chat
@@ -86,7 +86,7 @@
 
 	void setState(in String state);
 
-	List<Message> getMessages();
+	List<com.beem.project.beem.service.Message> getMessages();
 
 	/**
 	 * Try to start an OTR session.
--- a/src/com/beem/project/beem/service/aidl/IMessageListener.aidl	Tue May 14 18:24:25 2013 +0200
+++ b/src/com/beem/project/beem/service/aidl/IMessageListener.aidl	Fri Dec 26 15:43:38 2014 +0100
@@ -53,7 +53,7 @@
 	 * @param chat the chat receiving the message.
 	 * @param msg the message received in the chat.
 	 */
-	void processMessage(in IChat chat, in Message msg);
+	void processMessage(in IChat chat, in com.beem.project.beem.service.Message msg);
 
 	/**
 	 * This method is executed when a new ChatState is received by the chat.