Commit 0ffb1554 by Lee Munkyeong

文書協業

parent 5a1704d3
...@@ -992,4 +992,9 @@ public class CommunicationLogic extends AbstractLogic { ...@@ -992,4 +992,9 @@ public class CommunicationLogic extends AbstractLogic {
} }
return StringUtil.join(seperator, groupPathString); return StringUtil.join(seperator, groupPathString);
} }
public String getContentList() {
return "asd";
}
} }
...@@ -89,7 +89,7 @@ android { ...@@ -89,7 +89,7 @@ android {
armv7 { armv7 {
versionCode defaultConfig.versionCode versionCode defaultConfig.versionCode
ndk { ndk {
abiFilters "armeabi-v7a", "x86", "" abiFilters "armeabi-v7a", ""
} }
} }
...@@ -124,7 +124,7 @@ android { ...@@ -124,7 +124,7 @@ android {
armv7 { armv7 {
versionCode defaultConfig.versionCode versionCode defaultConfig.versionCode
ndk { ndk {
abiFilters "armeabi-v7a", "x86", "" abiFilters "armeabi-v7a", ""
} }
} }
armv8 { armv8 {
......
...@@ -1271,6 +1271,11 @@ public class ChatWebviewActivity extends ParentWebViewActivity { ...@@ -1271,6 +1271,11 @@ public class ChatWebviewActivity extends ParentWebViewActivity {
public String getCollaborationJoinFlg() { public String getCollaborationJoinFlg() {
return collaborationJoinFlg.toString(); return collaborationJoinFlg.toString();
} }
@JavascriptInterface
public String getCOntentList() {
return communicationLogic.getContentList();
}
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment