@aigens/aigens-sdk-core 0.4.6 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/android/build.gradle
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
ext {
|
2
2
|
junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2'
|
3
|
-
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.
|
4
|
-
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.
|
5
|
-
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.
|
3
|
+
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
|
4
|
+
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5'
|
5
|
+
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
|
6
6
|
|
7
7
|
}
|
8
8
|
|
@@ -12,17 +12,18 @@ buildscript {
|
|
12
12
|
jcenter()
|
13
13
|
}
|
14
14
|
dependencies {
|
15
|
-
classpath 'com.android.tools.build:gradle:
|
15
|
+
classpath 'com.android.tools.build:gradle:8.0.0'
|
16
16
|
}
|
17
17
|
}
|
18
18
|
|
19
19
|
apply plugin: 'com.android.library'
|
20
20
|
|
21
21
|
android {
|
22
|
-
|
22
|
+
namespace "com.aigens.sdk"
|
23
|
+
compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 33
|
23
24
|
defaultConfig {
|
24
|
-
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion :
|
25
|
-
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion :
|
25
|
+
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
|
26
|
+
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 33
|
26
27
|
versionCode 1
|
27
28
|
versionName "1.0"
|
28
29
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
@@ -37,8 +38,8 @@ android {
|
|
37
38
|
abortOnError false
|
38
39
|
}
|
39
40
|
compileOptions {
|
40
|
-
sourceCompatibility JavaVersion.
|
41
|
-
targetCompatibility JavaVersion.
|
41
|
+
sourceCompatibility JavaVersion.VERSION_17
|
42
|
+
targetCompatibility JavaVersion.VERSION_17
|
42
43
|
}
|
43
44
|
}
|
44
45
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
2
2
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
3
|
-
|
3
|
+
>
|
4
4
|
<uses-permission android:name="android.permission.INTERNET" />
|
5
5
|
<application android:hardwareAccelerated="true">
|
6
6
|
<activity android:name=".WebContainerActivity"
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aigens/aigens-sdk-core",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.5.0",
|
4
4
|
"description": "Aigens Order.Place Core Plugin",
|
5
5
|
"main": "dist/plugin.cjs.js",
|
6
6
|
"module": "dist/esm/index.js",
|
@@ -44,10 +44,10 @@
|
|
44
44
|
"prepublishOnly": "npm run build"
|
45
45
|
},
|
46
46
|
"devDependencies": {
|
47
|
-
"@capacitor/android": "^
|
48
|
-
"@capacitor/core": "^
|
49
|
-
"@capacitor/docgen": "^0.2.
|
50
|
-
"@capacitor/ios": "^
|
47
|
+
"@capacitor/android": "^5.0.0",
|
48
|
+
"@capacitor/core": "^5.0.0",
|
49
|
+
"@capacitor/docgen": "^0.2.2",
|
50
|
+
"@capacitor/ios": "^5.0.0",
|
51
51
|
"@ionic/eslint-config": "^0.3.0",
|
52
52
|
"@ionic/prettier-config": "^1.0.1",
|
53
53
|
"@ionic/swiftlint-config": "^1.1.2",
|
@@ -60,7 +60,7 @@
|
|
60
60
|
"typescript": "~4.8"
|
61
61
|
},
|
62
62
|
"peerDependencies": {
|
63
|
-
"@capacitor/core": "^
|
63
|
+
"@capacitor/core": "^5.0.0"
|
64
64
|
},
|
65
65
|
"prettier": "@ionic/prettier-config",
|
66
66
|
"swiftlint": "@ionic/swiftlint-config",
|