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
2024-09-05 17:02:55 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
412e8f5e5fba3c58e6ac9e2ce6cef65edf85af01
412e8f5e
1 parent
b7f9b720
REVERT: new gradle, fixes for new gradle
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
9 deletions
app/build.gradle
app/src/main/AndroidManifest.xml
build.gradle
gradle/wrapper/gradle-wrapper.properties
scripts/publish-module.gradle
warply_android_sdk/build.gradle
warply_android_sdk/src/main/AndroidManifest.xml
warply_android_sdk/src/main/res/values/attrs.xml
app/build.gradle
View file @
412e8f5
...
...
@@ -3,7 +3,6 @@ apply plugin: 'com.android.application'
//apply plugin: 'com.huawei.agconnect'
android
{
namespace
"warp.ly.android_sdk"
compileSdkVersion
34
buildToolsVersion
"34.0.0"
...
...
app/src/main/AndroidManifest.xml
View file @
412e8f5
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"warp.ly.android_sdk"
>
<uses-permission
android:name=
"android.permission.INTERNET"
/>
<uses-permission
android:name=
"android.permission.WRITE_EXTERNAL_STORAGE"
/>
...
...
build.gradle
View file @
412e8f5
...
...
@@ -8,7 +8,7 @@ buildscript {
maven
{
url
'https://plugins.gradle.org/m2/'
}
}
dependencies
{
classpath
'com.android.tools.build:gradle:
8.1.4
'
classpath
'com.android.tools.build:gradle:
7.1.3
'
classpath
'com.google.gms:google-services:4.3.10'
classpath
'com.huawei.agconnect:agcp:1.7.2.300'
classpath
'io.github.gradle-nexus:publish-plugin:1.1.0'
...
...
gradle/wrapper/gradle-wrapper.properties
View file @
412e8f5
#Fri Jul 26 17:08:44 EEST 2024
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
8.0
-bin.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
7.2
-bin.zip
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
...
...
scripts/publish-module.gradle
View file @
412e8f5
...
...
@@ -32,7 +32,7 @@ afterEvaluate {
// Two artifacts, the `aar` (or `jar`) and the sources
if
(
project
.
plugins
.
findPlugin
(
"com.android.library"
))
{
from
components
.
findByName
(
'release'
)
from
components
.
release
}
else
{
from
components
.
java
}
...
...
warply_android_sdk/build.gradle
View file @
412e8f5
...
...
@@ -2,14 +2,13 @@ apply plugin: 'com.android.library'
ext
{
PUBLISH_GROUP_ID
=
'ly.warp'
PUBLISH_VERSION
=
'4.5.5.4r3
4
'
PUBLISH_VERSION
=
'4.5.5.4r3
5
'
PUBLISH_ARTIFACT_ID
=
'warply-android-sdk'
}
apply
from:
"${rootProject.projectDir}/scripts/publish-module.gradle"
android
{
namespace
'ly.warp.sdk'
compileSdkVersion
34
buildToolsVersion
"34.0.0"
...
...
warply_android_sdk/src/main/AndroidManifest.xml
View file @
412e8f5
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
>
xmlns:tools=
"http://schemas.android.com/tools"
package=
"ly.warp.sdk"
>
<uses-permission
android:name=
"android.permission.ACCESS_FINE_LOCATION"
/>
<uses-permission
android:name=
"android.permission.ACCESS_COARSE_LOCATION"
/>
...
...
warply_android_sdk/src/main/res/values/attrs.xml
View file @
412e8f5
...
...
@@ -5,7 +5,6 @@
<attr
name=
"dashLength"
format=
"dimension"
/>
<attr
name=
"dashGap"
format=
"dimension"
/>
<attr
name=
"dashThickness"
format=
"dimension"
/>
<attr
name=
"colorPrimary"
format=
"color"
/>
<attr
name=
"orientation"
format=
"enum"
>
<enum
name=
"horizontal"
value=
"0"
/>
<enum
name=
"vertical"
value=
"1"
/>
...
...
Please
register
or
login
to post a comment