Skip to content
This repository was archived by the owner on Feb 3, 2026. It is now read-only.

Commit 4272aa4

Browse files
authored
Merge pull request #29 from micahlt/master
Feature updates and bugfixes
2 parents 4f6a528 + 90d88fe commit 4272aa4

20 files changed

Lines changed: 1616 additions & 225 deletions

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
applicationId "org.scratchclient4.itchy"
77
minSdkVersion rootProject.ext.minSdkVersion
88
targetSdkVersion rootProject.ext.targetSdkVersion
9-
versionCode 7
10-
versionName "0.5.8"
9+
versionCode 10
10+
versionName "0.7.0"
1111
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1212
}
1313
buildTypes {

android/app/capacitor.build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ android {
99

1010
apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
1111
dependencies {
12+
implementation project(':capacitor-community-http')
1213
implementation project(':capacitor-dark-mode')
1314
implementation "androidx.core:core:1.1.0"
1415
}

android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
<data android:scheme="https" />
3131
<data android:pathPattern="/" />
3232
<data android:pathPattern="/projects/.*" />
33+
<data android:pathPattern="/users/.*" />
3334
</intent-filter>
3435
<intent-filter>
3536
<action android:name="com.darryncampbell.cordova.plugin.intent.ACTION" />

android/app/src/main/res/xml/config.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@
77
<param name="onload" value="true"/>
88
</feature>
99

10+
<feature name="CordovaHttpPlugin">
11+
<param name="android-package" value="com.silkimen.cordovahttp.CordovaHttpPlugin"/>
12+
</feature>
13+
14+
<feature name="File">
15+
<param name="android-package" value="org.apache.cordova.file.FileUtils"/>
16+
<param name="onload" value="true"/>
17+
</feature>
18+
1019
<feature name="WebIntent">
1120
<param name="android-package" value="com.borismus.webintent.WebIntent"/>
1221
</feature>

android/capacitor.settings.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
include ':capacitor-android'
33
project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor')
44

5+
include ':capacitor-community-http'
6+
project(':capacitor-community-http').projectDir = new File('../node_modules/@capacitor-community/http/android')
7+
58
include ':capacitor-dark-mode'
69
project(':capacitor-dark-mode').projectDir = new File('../node_modules/capacitor-dark-mode/android')

0 commit comments

Comments
 (0)