Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove jcenter repository #836

Merged
merged 4 commits into from
Oct 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ dependencies {
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'com.github.AppIntro:AppIntro:6.1.0'
implementation 'io.github.medyo:android-about-page:2.0.0'
implementation 'com.google.android.exoplayer:exoplayer-core:2.11.8'
implementation 'com.google.android:flexbox:2.0.1'
implementation 'com.google.android.exoplayer:exoplayer-core:2.13.3'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

implementation 'com.google.android.flexbox:flexbox:2.0.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'com.google.code.gson:gson:2.8.8'
implementation 'com.hopenlib.library:flextools:1.0.1'
implementation 'io.github.mrherintsoahasina:flextools:1.0.3'
implementation 'com.ncorti:slidetoact:0.9.0'
implementation 'io.noties.markwon:core:4.6.2'
implementation 'org.greenrobot:eventbus:3.1.1'
Expand Down Expand Up @@ -153,7 +153,7 @@ dependencies {
androidTestImplementation "io.mockk:mockk-android:$mockkVersion"
androidTestImplementation "junit:junit:$junitVersion"

androidTestFullImplementation 'tools.fastlane:screengrab:2.1.0'
androidTestFullImplementation 'tools.fastlane:screengrab:2.1.1'

debugImplementation "androidx.fragment:fragment-testing:$fragmentVersion"
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,6 @@ fun SimpleExoPlayer.setAudioAttributesCompat(compatAttrs: AudioAttributesCompat)
.build()

if (attrs != audioAttributes) {
audioAttributes = attrs
setAudioAttributes(attrs, false)
}
}
8 changes: 4 additions & 4 deletions app/src/main/res/layout/random_preset_fragment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
android:layout_width="match_parent"
android:layout_height="8dp" />

<com.hopenlib.flextools.FlexRadioGroup
<io.github.mrherintsoahasina.flextools.FlexRadioGroup
android:id="@+id/preset_type"
android:layout_width="match_parent"
android:layout_height="wrap_content"
Expand Down Expand Up @@ -70,7 +70,7 @@
android:layout_marginHorizontal="16dp"
android:text="@string/relax" />

</com.hopenlib.flextools.FlexRadioGroup>
</io.github.mrherintsoahasina.flextools.FlexRadioGroup>

<Space
android:layout_width="match_parent"
Expand All @@ -86,7 +86,7 @@
android:layout_width="match_parent"
android:layout_height="8dp" />

<com.hopenlib.flextools.FlexRadioGroup
<io.github.mrherintsoahasina.flextools.FlexRadioGroup
android:id="@+id/preset_intensity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
Expand Down Expand Up @@ -116,7 +116,7 @@
android:layout_marginHorizontal="16dp"
android:text="@string/dense" />

</com.hopenlib.flextools.FlexRadioGroup>
</io.github.mrherintsoahasina.flextools.FlexRadioGroup>

<Space
android:layout_width="match_parent"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {
allprojects {
repositories {
google()
jcenter() // TODO: replace it with maven central by the end of the year 2021.
mavenCentral()
maven { url "https://jitpack.io" }
}
}
Expand Down