Skip to content

Commit

Permalink
Merge pull request #294 from PatrykMis/patch-230414
Browse files Browse the repository at this point in the history
Bump AGP to 8.0.0
  • Loading branch information
chenxiaolong authored Apr 15, 2023
2 parents 0601bf1 + 64e709c commit 60dcafa
Show file tree
Hide file tree
Showing 51 changed files with 51 additions and 54 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### Unreleased

* Update all dependencies (PR: #289, @PatrykMis)
* Update all dependencies (PR: #289, #294, @PatrykMis)
* Improve conference call handling (PR: #285, @chenxiaolong)
* Recording a conference call will no longer incorrectly produce extra files for each participant in the call.
* When using call waiting, the recording is paused for the inactive call so that it doesn't capture the audio for the wrong call.
Expand Down
2 changes: 1 addition & 1 deletion app/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/build
/build
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ android {
jvmTarget = "11"
}
buildFeatures {
buildConfig = true
viewBinding = true
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/magisk/updates/release/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"changelog": "https://github.com/chenxiaolong/BCR/raw/v1.39/app/magisk/updates/release/changelog.txt",
"version": "1.39",
"versionCode": 75520
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ class ExampleInstrumentedTest {
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("com.chiller3.bcr", appContext.packageName)
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@
</intent-filter>
</activity>
</application>
</manifest>
</manifest>
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/AudioFormatExtension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ val AudioFormat.frameSizeInBytesCompat: Int
// Hardcoded for Android 9 compatibility only
assert(encoding == AudioFormat.ENCODING_PCM_16BIT)
2 * channelCount
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/ChipGroupCentered.kt
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@ class ChipGroupCentered(context: Context, attrs: AttributeSet?, defStyleAttr: In
}
}
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/FilenameTemplate.kt
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,4 @@ class FilenameTemplate private constructor(props: Properties) {
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ class LongClickablePreference(context: Context, attrs: AttributeSet?) : Preferen
interface OnPreferenceLongClickListener {
fun onPreferenceLongClick(preference: Preference): Boolean
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ class NotificationActionService : Service() {

START_NOT_STICKY
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/Notifications.kt
Original file line number Diff line number Diff line change
Expand Up @@ -340,4 +340,4 @@ class Notifications(
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ class OpenPersistentDocumentTree : ActivityResultContracts.OpenDocumentTree() {

return intent
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/OutputDirUtils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,4 @@ class OutputDirUtils(private val context: Context, private val redactor: Redacto

fun redact(uri: Uri): String
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ class OutputDirectoryBottomSheetFragment : BottomSheetDialogFragment(), Slider.O
companion object {
val TAG: String = OutputDirectoryBottomSheetFragment::class.java.simpleName
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -173,4 +173,4 @@ class OutputFormatBottomSheetFragment : BottomSheetDialogFragment(),
companion object {
val TAG: String = OutputFormatBottomSheetFragment::class.java.simpleName
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/Permissions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ object Permissions {
intent.data = Uri.fromParts("package", context.packageName, null)
return intent
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/Preferences.kt
Original file line number Diff line number Diff line change
Expand Up @@ -215,4 +215,4 @@ class Preferences(private val context: Context) {
var sampleRate: SampleRate?
get() = getOptionalUint(PREF_SAMPLE_RATE)?.let { SampleRate(it) }
set(sampleRate) = setOptionalUint(PREF_SAMPLE_RATE, sampleRate?.value)
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/RecorderApplication.kt
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ class RecorderApplication : Application() {
companion object {
private val TAG = RecorderApplication::class.java.simpleName
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -327,4 +327,4 @@ class RecorderInCallService : InCallService(), RecorderThread.OnRecordingComplet
notifyFailure(errorMsg, file)
}
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/RecorderProvider.kt
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ class RecorderProvider : ContentProvider() {
selection: String?,
selectionArgs: Array<String>?,
): Int = 0
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/RecorderThread.kt
Original file line number Diff line number Diff line change
Expand Up @@ -800,4 +800,4 @@ class RecorderThread(
*/
fun onRecordingFailed(thread: RecorderThread, errorMsg: String?, file: OutputFile?)
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/RecorderTileService.kt
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ class RecorderTileService : TileService(), SharedPreferences.OnSharedPreferenceC

tile.updateTile()
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/SettingsActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,4 @@ class SettingsActivity : AppCompatActivity() {
}
}
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/UriExtensions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ val Uri.formattedString: String
}
}
else -> toString()
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/format/AacFormat.kt
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ object AacFormat : Format() {

override fun getContainer(fd: FileDescriptor): Container =
MediaMuxerContainer(fd, MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4)
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/format/Encoder.kt
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ abstract class Encoder(
* @param isEof No more data can be submitted after this method is called once with EOF == true.
*/
abstract fun encode(buffer: ByteBuffer, isEof: Boolean)
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/format/FlacContainer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,4 @@ class FlacContainer(private val fd: FileDescriptor) : Container {
private val TAG = FlacContainer::class.java.simpleName
private val FLAC_MAGIC = ubyteArrayOf(0x66u, 0x4cu, 0x61u, 0x43u) // fLaC
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/format/FlacFormat.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ object FlacFormat : Format() {

override fun getContainer(fd: FileDescriptor): Container =
FlacContainer(fd)
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/format/Format.kt
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ sealed class Format {
return Pair(format, param)
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ object NoParamInfo : FormatParamInfo(0u) {
override fun toNearest(param: UInt): UInt = param

override fun format(param: UInt): String = ""
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ class MediaCodecEncoder(
return codec
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ class MediaMuxerContainer(
override fun writeSamples(trackIndex: Int, byteBuffer: ByteBuffer,
bufferInfo: MediaCodec.BufferInfo) =
muxer.writeSampleData(trackIndex, byteBuffer, bufferInfo)
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/format/OpusFormat.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ object OpusFormat : Format() {
@RequiresApi(Build.VERSION_CODES.Q)
override fun getContainer(fd: FileDescriptor): Container =
MediaMuxerContainer(fd, MediaMuxer.OutputFormat.MUXER_OUTPUT_OGG)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ class PassthroughEncoder(

numFrames += frames
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/format/SampleRate.kt
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ value class SampleRate(val value: UInt) {
return default
}
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/format/WaveContainer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,4 @@ class WaveContainer(private val fd: FileDescriptor) : Container {
private val FMT_MAGIC = ubyteArrayOf(0x66u, 0x6du, 0x74u, 0x20u) // "fmt "
private val DATA_MAGIC = ubyteArrayOf(0x64u, 0x61u, 0x74u, 0x61u) // data
}
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/chiller3/bcr/format/WaveFormat.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ object WaveFormat : Format() {

override fun getContainer(fd: FileDescriptor): Container =
WaveContainer(fd)
}
}
2 changes: 1 addition & 1 deletion app/src/main/res/layout/bottom_sheet_chip.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
<com.google.android.material.chip.Chip xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/Widget.Material3.Chip.Filter"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
android:layout_height="wrap_content" />
2 changes: 1 addition & 1 deletion app/src/main/res/layout/output_directory_bottom_sheet.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@
android:text="@string/bottom_sheet_reset"
style="?attr/materialButtonOutlinedStyle" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</androidx.core.widget.NestedScrollView>
2 changes: 1 addition & 1 deletion app/src/main/res/layout/output_format_bottom_sheet.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@
android:text="@string/bottom_sheet_reset"
style="?attr/materialButtonOutlinedStyle" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</androidx.core.widget.NestedScrollView>
2 changes: 1 addition & 1 deletion app/src/main/res/layout/settings_activity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
android:id="@+id/settings"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
</LinearLayout>
2 changes: 1 addition & 1 deletion app/src/main/res/mipmap-anydpi/ic_launcher.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
</adaptive-icon>
2 changes: 1 addition & 1 deletion app/src/main/res/mipmap-anydpi/ic_launcher_round.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
</adaptive-icon>
2 changes: 1 addition & 1 deletion app/src/main/res/values-iw/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@

<!-- Quick settings tile -->
<string name="quick_settings_label">הקלטת שיחה</string>
</resources>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values/dimens.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
<dimen name="bottom_sheet_overall_padding">28dp</dimen>
<dimen name="bottom_sheet_title_margin_bottom">16dp</dimen>
<dimen name="bottom_sheet_section_separation">28dp</dimen>
</resources>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
<item name="android:windowLightStatusBar">?attr/isLightTheme</item>
<item name="windowActionModeOverlay">true</item>
</style>
</resources>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/xml/root_preferences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@
app:title="@string/pref_version_name"
app:iconSpaceReserved="false" />
</PreferenceCategory>
</PreferenceScreen>
</PreferenceScreen>
2 changes: 1 addition & 1 deletion app/src/test/java/com/chiller3/bcr/ExampleUnitTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ class ExampleUnitTest {
fun addition_isCorrect() {
assertEquals(4, 2 + 2)
}
}
}
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "7.4.2" apply false
id("com.android.library") version "7.4.2" apply false
id("com.android.application") version "8.0.0" apply false
id("com.android.library") version "8.0.0" apply false
id("org.jetbrains.kotlin.android") version "1.8.20" apply false
}

Expand Down
4 changes: 0 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,3 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
android.useAndroidX=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
# Enables namespacing of each library's R class so that its R class includes only the
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true

0 comments on commit 60dcafa

Please sign in to comment.