forked from mirrors/linphone-iphone
fix Adroid compilation issue
This commit is contained in:
parent
866af779ab
commit
6e8e0094c4
2 changed files with 0 additions and 9 deletions
|
|
@ -1539,14 +1539,6 @@ extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_getDomain(JNIEnv*
|
|||
return NULL;
|
||||
}
|
||||
}
|
||||
extern "C" void Java_org_linphone_core_LinphoneAddressImpl_setDomain(JNIEnv* env
|
||||
,jobject thiz
|
||||
,jlong ptr
|
||||
,jstring jdomain) {
|
||||
const char* domain = env->GetStringUTFChars(jdomain, NULL);
|
||||
linphone_address_set_domain((LinphoneAddress*)ptr, domain);
|
||||
env->ReleaseStringUTFChars(jdomain, domain);
|
||||
}
|
||||
extern "C" jstring Java_org_linphone_core_LinphoneAddressImpl_toString(JNIEnv* env
|
||||
,jobject thiz
|
||||
,jlong ptr) {
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@ public class LinphoneAddressImpl implements LinphoneAddress {
|
|||
private native void setDomain(long ptr,String domain);
|
||||
private native void setUserName(long ptr,String username);
|
||||
private native String toString(long ptr);
|
||||
private native void setDomain(long ptr, String domain);
|
||||
|
||||
protected LinphoneAddressImpl(String identity) throws LinphoneCoreException{
|
||||
nativePtr = newLinphoneAddressImpl(identity, null);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue