mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-22 16:07:30 +00:00
Fix missing compile target
This commit is contained in:
parent
f0b2ff5b46
commit
8a20c46bd4
@ -157,7 +157,7 @@ def abiPostFix = ['armeabi-v7a' : 1,
|
|||||||
'universal' : 5]
|
'universal' : 5]
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 30
|
compileSdkVersion androidCompileSdkVersion
|
||||||
buildToolsVersion '29.0.3'
|
buildToolsVersion '29.0.3'
|
||||||
useLibrary 'org.apache.http.legacy'
|
useLibrary 'org.apache.http.legacy'
|
||||||
|
|
||||||
|
@ -2,7 +2,8 @@ android.useAndroidX=true
|
|||||||
android.enableJetifier=true
|
android.enableJetifier=true
|
||||||
org.gradle.jvmargs=-Xmx2048m
|
org.gradle.jvmargs=-Xmx2048m
|
||||||
|
|
||||||
kotlinVersion=1.4.20
|
androidCompileSdkVersion=30
|
||||||
|
kotlinVersion=1.4.32
|
||||||
kovenantVersion=3.3.0
|
kovenantVersion=3.3.0
|
||||||
curve25519Version=0.5.0
|
curve25519Version=0.5.0
|
||||||
protobufVersion=2.5.0
|
protobufVersion=2.5.0
|
||||||
|
@ -3,6 +3,10 @@ plugins {
|
|||||||
id 'kotlin-android'
|
id 'kotlin-android'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
compileSdkVersion androidCompileSdkVersion
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(":libsignal")
|
implementation project(":libsignal")
|
||||||
implementation "com.goterl.lazycode:lazysodium-android:4.2.0@aar"
|
implementation "com.goterl.lazycode:lazysodium-android:4.2.0@aar"
|
||||||
|
@ -1,5 +1,2 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest package="org.session.libsession" />
|
||||||
package="org.session.libsession">
|
|
||||||
|
|
||||||
</manifest>
|
|
@ -2,6 +2,10 @@ apply plugin: 'com.android.library'
|
|||||||
apply plugin: 'maven'
|
apply plugin: 'maven'
|
||||||
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android'
|
||||||
|
|
||||||
|
android {
|
||||||
|
compileSdkVersion androidCompileSdkVersion
|
||||||
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user