Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
WirelessAlien committed Dec 20, 2024
1 parent 5e66757 commit 91bb6f9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.13.0-alpha08'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

//glide
implementation("com.github.bumptech.glide:glide:4.16.0")
Expand Down Expand Up @@ -83,4 +80,8 @@ dependencies {
//7-Zip-Jbinding-4Android
implementation 'com.github.omicronapps:7-Zip-JBinding-4Android:Release-16.02-2.02'


testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}
3 changes: 2 additions & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@
#-renamesourcefileattribute SourceFile

-dontwarn org.brotli.dec.BrotliInputStream
-dontwarn com.github.luben.zstd.ZstdOutputStream
-dontwarn com.github.luben.zstd.ZstdOutputStream
-dontwarn com.github.luben.zstd.ZstdInputStream
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ class MainActivity : AppCompatActivity(), FileAdapter.OnItemClickListener, FileA
private fun startExtractionCsService(file: String) {
progressDialog.show()
val intent = Intent(this, ExtractCsArchiveService::class.java).apply {
putExtra(ExtractArchiveService.EXTRA_FILE_PATH, file)
putExtra(ExtractCsArchiveService.EXTRA_FILE_PATH, file)

}
ContextCompat.startForegroundService(this, intent)
Expand Down

0 comments on commit 91bb6f9

Please sign in to comment.