Log dmg2img output to stderr

This commit is contained in:
Davide Depau 2018-08-17 21:50:34 +02:00
parent 95af3899d3
commit c6a5c42a1b
3 changed files with 6 additions and 3 deletions

View File

@ -31,6 +31,7 @@ dependencies {
implementation 'com.android.support:design:28.0.0-rc01'
implementation 'com.android.support:recyclerview-v7:28.0.0-rc01'
implementation 'com.android.support:gridlayout-v7:28.0.0-rc01'
api 'com.google.guava:guava:26.0-android'
implementation 'com.github.isabsent:filepicker:1.1.01'
// implementation 'com.github.mjdev:libaums:0.5.5'

View File

@ -22,9 +22,10 @@
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<service
android:name=".services.UsbAPIWriteService"
android:exported="false"/>
<service android:name=".services.UsbApiImgWriteService"
android:exported="false"/>
<service android:name=".services.UsbApiDmgWriteService"
android:exported="false"/>
</application>
</manifest>

View File

@ -22,6 +22,7 @@ private fun readPartitionTable(dmg2img: File, libDir: String, file: File): Pair<
val p = pb.start()
val out = p.inputStream.readString()
System.err.println(out)
p.waitFor()
val matches = partRegex.findAll(out)