Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_android_sdk_maven_plugin
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Panagiotis Triantafyllou
2025-02-12 14:31:58 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
680d281252fa70dcc3f0a299b0cf4a5aa7ea1889
680d2812
1 parent
66e1adfb
new android studio fix and new gradle
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
20 additions
and
8 deletions
.idea/compiler.xml
.idea/gradle.xml
.idea/misc.xml
app/build.gradle
app/src/main/AndroidManifest.xml
build.gradle
gradle/wrapper/gradle-wrapper.properties
scripts/publish-module.gradle
warply_android_sdk/build.gradle
.idea/compiler.xml
View file @
680d281
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"CompilerConfiguration"
>
<bytecodeTargetLevel
target=
"
17
"
/>
<bytecodeTargetLevel
target=
"
21
"
/>
</component>
</project>
\ No newline at end of file
...
...
.idea/gradle.xml
View file @
680d281
...
...
@@ -4,6 +4,7 @@
<component
name=
"GradleSettings"
>
<option
name=
"linkedExternalProjectsSettings"
>
<GradleProjectSettings>
<option
name=
"testRunner"
value=
"CHOOSE_PER_TEST"
/>
<option
name=
"externalProjectPath"
value=
"$PROJECT_DIR$"
/>
<option
name=
"gradleHome"
value=
"$PROJECT_DIR$/../../../../../../gradle-6.6.1"
/>
<option
name=
"gradleJvm"
value=
"#GRADLE_LOCAL_JAVA_HOME"
/>
...
...
.idea/misc.xml
View file @
680d281
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"DesignSurface"
>
<option
name=
"filePathToZoomLevelMap"
>
...
...
@@ -183,7 +184,7 @@
</map>
</option>
</component>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_
17"
default=
"true"
project-jdk-name=
"jbr-17
"
project-jdk-type=
"JavaSDK"
>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_
21"
default=
"true"
project-jdk-name=
"jbr-21
"
project-jdk-type=
"JavaSDK"
>
<output
url=
"file://$PROJECT_DIR$/build/classes"
/>
</component>
<component
name=
"ProjectType"
>
...
...
app/build.gradle
View file @
680d281
...
...
@@ -47,6 +47,14 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
}
namespace
"warp.ly.android_sdk"
packaging
{
jniLibs
{
useLegacyPackaging
true
}
}
}
dependencies
{
...
...
app/src/main/AndroidManifest.xml
View file @
680d281
...
...
@@ -16,7 +16,6 @@
android:name=
"warp.ly.android_sdk.WarplyAndroidSDKApplication"
android:allowBackup=
"false"
android:exported=
"true"
android:extractNativeLibs=
"true"
android:fullBackupContent=
"false"
android:hardwareAccelerated=
"true"
android:icon=
"@mipmap/ic_launcher"
...
...
build.gradle
View file @
680d281
...
...
@@ -8,9 +8,9 @@ buildscript {
maven
{
url
'https://plugins.gradle.org/m2/'
}
}
dependencies
{
classpath
'com.android.tools.build:gradle:
7.1.3
'
classpath
'com.android.tools.build:gradle:
8.8.0
'
classpath
'com.google.gms:google-services:4.3.10'
classpath
'com.huawei.agconnect:agcp:1.
7.2
.300'
classpath
'com.huawei.agconnect:agcp:1.
9.1
.300'
classpath
'io.github.gradle-nexus:publish-plugin:1.1.0'
// NOTE: Do not place your application dependencies here; they belong
...
...
gradle/wrapper/gradle-wrapper.properties
View file @
680d281
#Fri Jul 26 17:08:44 EEST 2024
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
7
.2-bin.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
8.10
.2-bin.zip
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
...
...
scripts/publish-module.gradle
View file @
680d281
...
...
@@ -32,7 +32,8 @@ afterEvaluate {
// Two artifacts, the `aar` (or `jar`) and the sources
if
(
project
.
plugins
.
findPlugin
(
"com.android.library"
))
{
from
components
.
release
// from components.release
from
components
.
findByName
(
'release'
)
}
else
{
from
components
.
java
}
...
...
warply_android_sdk/build.gradle
View file @
680d281
...
...
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
ext
{
PUBLISH_GROUP_ID
=
'ly.warp'
PUBLISH_VERSION
=
'4.5.5.4r4
0
'
PUBLISH_VERSION
=
'4.5.5.4r4
5
'
PUBLISH_ARTIFACT_ID
=
'warply-android-sdk'
}
...
...
@@ -44,6 +44,8 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
}
namespace
"ly.warp.sdk"
}
dependencies
{
...
...
Please
register
or
login
to post a comment