Skip to content

Commit

Permalink
Merge pull request #262 from spoonconsulting/upgrade-workmanager
Browse files Browse the repository at this point in the history
Upgrade WorkManager and Room
  • Loading branch information
zfir authored Feb 21, 2023
2 parents 3f8e547 + 87dc54d commit 60f017d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
</engines>
<dependency id="cordova-plugin-file" version="6.0.2"/>
<platform name="android">
<framework src="androidx.work:work-runtime:2.7.1" />
<framework src="androidx.work:work-runtime:2.8.0" />
<framework src="com.squareup.okhttp3:okhttp:4.9.3" />
<framework src="androidx.room:room-runtime:2.4.2" />
<framework src="androidx.room:room-runtime:2.5.0" />
<framework src="src/android/config.gradle" custom="true" type="gradleReference"/>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="FileTransferBackground">
Expand All @@ -34,6 +34,7 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<meta-data android:name="DATABASE" android:value="cordova-plugin-background-upload.db" />
Expand Down
2 changes: 1 addition & 1 deletion src/android/config.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ if(cordovaConfig.MIN_SDK_VERSION < minSdkVersion){
}

dependencies {
annotationProcessor 'androidx.room:room-compiler:2.4.3'
annotationProcessor 'androidx.room:room-compiler:2.5.0'
}

0 comments on commit 60f017d

Please sign in to comment.