Skip to content

Commit bc662fa

Browse files
authored
Merge pull request #73 from talsec/fix/repository_update
Fix/Repository Update - Release freeRASP 18.0.2
2 parents 9e3d652 + 52d0e0f commit bc662fa

File tree

9 files changed

+305
-193
lines changed

9 files changed

+305
-193
lines changed

.gitignore

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
# Built application files
2+
*.apk
3+
*.aar
4+
*.ap_
5+
*.aab
6+
7+
# Files for the ART/Dalvik VM
8+
*.dex
9+
10+
# Java class files
11+
*.class
12+
13+
# Generated files
14+
bin/
15+
gen/
16+
out/
17+
# Uncomment the following line in case you need and you don't have the release build type files in your app
18+
# release/
19+
20+
# Gradle files
21+
.gradle/
22+
build/
23+
24+
# Local configuration file (sdk path, etc)
25+
local.properties
26+
27+
# Proguard folder generated by Eclipse
28+
proguard/
29+
30+
# Log Files
31+
*.log
32+
33+
# Android Studio Navigation editor temp files
34+
.navigation/
35+
36+
# Android Studio captures folder
37+
captures/
38+
39+
# IntelliJ
40+
*.iml
41+
.idea/
42+
43+
# Keystore files
44+
# Uncomment the following lines if you do not want to check your keystore files in.
45+
#*.jks
46+
#*.keystore
47+
48+
# External native build folder generated in Android Studio 2.2 and later
49+
.externalNativeBuild
50+
.cxx/
51+
52+
# Google Services (e.g. APIs or Firebase)
53+
# google-services.json
54+
55+
# Freeline
56+
freeline.py
57+
freeline/
58+
freeline_project_description.json
59+
60+
# fastlane
61+
fastlane/report.xml
62+
fastlane/Preview.html
63+
fastlane/screenshots
64+
fastlane/test_output
65+
fastlane/readme.md
66+
67+
# Version control
68+
vcs.xml
69+
70+
# lint
71+
lint/intermediates/
72+
lint/generated/
73+
lint/outputs/
74+
lint/tmp/
75+
# lint/reports/
76+
77+
# Android Profiling
78+
*.hprof
79+
80+
# macOS
81+
.DS_Store
82+
83+
# Windows
84+
Thumbs.db
85+
ehthumbs.db
86+
Desktop.ini
87+
88+
# Linux
89+
*~
90+
91+
# Temporary files
92+
*.swp
93+
*.swo
94+
*~
95+
96+
# Kotlin
97+
*.kt.swp

FreeRASPDemoApp/app/build.gradle

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
plugins {
2-
id 'com.android.application'
3-
id 'kotlin-android'
2+
alias(libs.plugins.android.application)
43
}
54

65
android {
6+
namespace "com.aheaditec.talsec.demoapp"
7+
78
defaultConfig {
89
applicationId "com.aheaditec.talsec.demoapp"
910
minSdkVersion 23
1011
compileSdkVersion 36
1112
targetSdkVersion 36
1213
versionCode 1
1314
versionName "1.0"
14-
15-
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1615
}
1716

1817
buildTypes {
@@ -23,24 +22,14 @@ android {
2322
}
2423

2524
compileOptions {
26-
sourceCompatibility JavaVersion.VERSION_1_8
27-
targetCompatibility JavaVersion.VERSION_1_8
28-
}
29-
30-
kotlinOptions {
31-
jvmTarget = '1.8'
25+
sourceCompatibility JavaVersion.VERSION_17
26+
targetCompatibility JavaVersion.VERSION_17
3227
}
33-
34-
namespace "com.aheaditec.talsec.demoapp"
3528
}
3629

3730
dependencies {
3831
// freeRASP SDK
39-
implementation 'com.aheaditec.talsec.security:TalsecSecurity-Community:17.0.0'
40-
41-
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
42-
implementation 'androidx.core:core-ktx:1.17.0'
43-
implementation 'androidx.appcompat:appcompat:1.7.1'
44-
implementation 'com.google.android.material:material:1.13.0'
45-
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
46-
}
32+
implementation libs.talsec.freerasp
33+
implementation libs.kotlin.stdlib
34+
implementation libs.bundles.androidx
35+
}

0 commit comments

Comments
 (0)