Fix missing compile target

This commit is contained in:
Niels Andriesse 2021-05-18 14:08:21 +10:00
parent f0b2ff5b46
commit 8a20c46bd4
5 changed files with 12 additions and 6 deletions

View File

@ -157,7 +157,7 @@ def abiPostFix = ['armeabi-v7a' : 1,
'universal' : 5]
android {
compileSdkVersion 30
compileSdkVersion androidCompileSdkVersion
buildToolsVersion '29.0.3'
useLibrary 'org.apache.http.legacy'

View File

@ -2,7 +2,8 @@ android.useAndroidX=true
android.enableJetifier=true
org.gradle.jvmargs=-Xmx2048m
kotlinVersion=1.4.20
androidCompileSdkVersion=30
kotlinVersion=1.4.32
kovenantVersion=3.3.0
curve25519Version=0.5.0
protobufVersion=2.5.0

View File

@ -3,6 +3,10 @@ plugins {
id 'kotlin-android'
}
android {
compileSdkVersion androidCompileSdkVersion
}
dependencies {
implementation project(":libsignal")
implementation "com.goterl.lazycode:lazysodium-android:4.2.0@aar"

View File

@ -1,5 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.session.libsession">
</manifest>
<manifest package="org.session.libsession" />

View File

@ -2,6 +2,10 @@ apply plugin: 'com.android.library'
apply plugin: 'maven'
apply plugin: 'kotlin-android'
android {
compileSdkVersion androidCompileSdkVersion
}
repositories {
mavenCentral()
}