mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-22 07:57: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]
|
||||
|
||||
android {
|
||||
compileSdkVersion 30
|
||||
compileSdkVersion androidCompileSdkVersion
|
||||
buildToolsVersion '29.0.3'
|
||||
useLibrary 'org.apache.http.legacy'
|
||||
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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" />
|
@ -2,6 +2,10 @@ apply plugin: 'com.android.library'
|
||||
apply plugin: 'maven'
|
||||
apply plugin: 'kotlin-android'
|
||||
|
||||
android {
|
||||
compileSdkVersion androidCompileSdkVersion
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user