Skip to content

Commit 0ef5040

Browse files
xprikryl2oprikryl
andauthored
New sdk (#27)
* dependencies update * updated README --------- Co-authored-by: oprikryl <ondrej.prikryl@ahead-itec.com>
1 parent 0a78512 commit 0ef5040

8 files changed

Lines changed: 276 additions & 219 deletions

File tree

FreeRASPDemoApp/.gitignore

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
*.iml
22
.gradle
3-
/local.properties
4-
/.idea/caches
5-
/.idea/libraries
6-
/.idea/modules.xml
7-
/.idea/workspace.xml
8-
/.idea/navEditor.xml
9-
/.idea/assetWizardSettings.xml
3+
.idea
104
.DS_Store
115
/build
126
/captures

FreeRASPDemoApp/app/build.gradle

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ plugins {
44
}
55

66
android {
7-
compileSdkVersion 31
8-
buildToolsVersion "30.0.3"
9-
107
defaultConfig {
118
applicationId "com.aheaditec.talsec.demoapp"
12-
minSdkVersion 23
13-
targetSdkVersion 31
9+
minSdk 23
10+
compileSdk 34
11+
targetSdk 34
1412
versionCode 1
1513
versionName "1.0"
1614

@@ -23,25 +21,24 @@ android {
2321
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2422
}
2523
}
24+
2625
compileOptions {
2726
sourceCompatibility JavaVersion.VERSION_1_8
2827
targetCompatibility JavaVersion.VERSION_1_8
2928
}
29+
3030
kotlinOptions {
3131
jvmTarget = '1.8'
3232
}
3333
}
3434

3535
dependencies {
3636
// freeRASP SDK
37-
implementation 'com.aheaditec.talsec.security:TalsecSecurity-Community:8.3.0'
37+
implementation 'com.aheaditec.talsec.security:TalsecSecurity-Community:9.0.0'
3838

3939
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
40-
implementation 'androidx.core:core-ktx:1.5.0'
41-
implementation 'androidx.appcompat:appcompat:1.3.0'
42-
implementation 'com.google.android.material:material:1.3.0'
43-
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
44-
testImplementation 'junit:junit:4.+'
45-
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
46-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
40+
implementation 'androidx.core:core-ktx:1.12.0'
41+
implementation 'androidx.appcompat:appcompat:1.6.1'
42+
implementation 'com.google.android.material:material:1.11.0'
43+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4744
}

FreeRASPDemoApp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
mavenCentral()
77
}
88
dependencies {
9-
classpath "com.android.tools.build:gradle:7.0.3"
9+
classpath "com.android.tools.build:gradle:7.1.3"
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111

1212
// NOTE: Do not place your application dependencies here; they belong
@@ -17,7 +17,7 @@ buildscript {
1717
allprojects {
1818
repositories {
1919
google()
20-
jcenter()
20+
mavenCentral()
2121
maven { url "https://nexus3-public.monetplus.cz/repository/ahead-talsec-free-rasp" }
2222
maven { url 'https://jitpack.io' }
2323
}
5.08 KB
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Wed Jun 23 10:13:28 CEST 2021
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip

0 commit comments

Comments
 (0)