Skip to content
Snippets Groups Projects
Commit 2c9e9fe4 authored by Jawnnypoo's avatar Jawnnypoo
Browse files

Update dependencies

parent 318f37da
No related branches found
No related tags found
No related merge requests found
Pipeline #
Loading
Loading
@@ -54,7 +54,7 @@ dependencies {
compile 'com.android.support:palette-v7:24.0.0'
compile 'com.android.support:customtabs:24.0.0'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.github.aurae.retrofit2:converter-logansquare:1.4.0'
compile 'com.github.aurae.retrofit2:converter-logansquare:1.4.1'
compile('com.squareup.retrofit2:converter-simplexml:2.1.0') {
exclude group: 'xpp3', module: 'xpp3'
exclude group: 'stax', module: 'stax-api'
Loading
Loading
@@ -66,7 +66,7 @@ dependencies {
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.0.2'
compile 'com.squareup:otto:1.3.8'
compile 'io.reactivex:rxjava:1.1.6'
compile 'io.reactivex:rxandroid:1.2.0'
compile 'io.reactivex:rxandroid:1.2.1'
compile 'com.jakewharton:butterknife:8.1.0'
apt 'com.jakewharton:butterknife-compiler:8.1.0'
compile 'com.jakewharton.timber:timber:4.1.2'
Loading
Loading
@@ -76,17 +76,17 @@ dependencies {
compile 'org.parceler:parceler-api:1.1.5'
apt 'org.parceler:parceler:1.1.5'
compile 'com.commit451:bypasses:1.0.1'
compile 'com.commit451:easel:0.0.5'
compile 'com.commit451:foregroundviews:1.0.0'
compile 'com.commit451:elasticdragdismisslayout:1.0.2'
compile 'com.commit451:adapterlayout:1.0.1'
compile 'com.github.Commit451:AdapterLayout:1.0.2'
compile 'com.github.Commit451:Easel:1.0.0'
compile 'com.github.Commit451:Gimbal:1.0.0'
compile 'com.github.Commit451:Teleprinter:1.0.2'
compile 'com.github.Commit451:BypassPicassoImageGetter:1.0.0'
compile 'com.github.Commit451:Jounce:1.0.1'
compile 'com.github.Commit451:EasyCallback:1.0.0'
compile 'com.github.Commit451:ForegroundViews:2.1.0'
compile 'com.pnikosis:materialish-progress:1.7'
compile 'com.jawnnypoo:physicslayout:1.0.1'
compile 'com.github.Jawnnypoo:PhysicsLayout:2.0.0'
compile 'com.alexgwyn.recyclerviewsquire:recyclerviewsquire:0.0.5'
compile 'com.github.ivbaranov:materiallettericon:0.2.2'
compile 'com.github.johnkil.android-robototextview:robototextview:2.5.0'
Loading
Loading
@@ -94,14 +94,14 @@ dependencies {
compile 'com.wdullaer:materialdatetimepicker:2.3.0'
compile 'com.wefika:flowlayout:0.4.1'
compile 'com.github.novoda:simple-chrome-custom-tabs:0.1.3-rc1'
compile('com.crashlytics.sdk.android:crashlytics:2.5.7@aar') {
compile('com.crashlytics.sdk.android:crashlytics:2.6.0@aar') {
transitive = true;
}
 
compile('com.github.afollestad.material-dialogs:core:0.8.5.8@aar') {
compile('com.github.afollestad.material-dialogs:core:0.8.6.1@aar') {
transitive = true
}
compile('com.github.afollestad.material-dialogs:commons:0.8.5.8@aar') {
compile('com.github.afollestad.material-dialogs:commons:0.8.6.1@aar') {
transitive = true
}
}
Loading
Loading
@@ -142,11 +142,10 @@ public class AboutActivity extends BaseActivity {
}
 
private void addContributors(List<Contributor> contributors) {
PhysicsConfig config = new PhysicsConfig.Builder()
.setShapeType(PhysicsConfig.ShapeType.CIRCLE)
.setDensity(1.0f)
.setRestitution(0.0f)
.build();
PhysicsConfig config = PhysicsConfig.create();
config.shapeType = PhysicsConfig.SHAPE_TYPE_CIRCLE;
config.fixtureDef.density = 1.0f;
config.fixtureDef.restitution = 1.0f;
int x = 0;
int y = 0;
int imageSize = getResources().getDimensionPixelSize(R.dimen.circle_size);
Loading
Loading
Loading
Loading
@@ -15,7 +15,7 @@
android:scaleType="centerCrop"
android:src="@drawable/header"/>
 
<com.commit451.foregroundimageview.ForegroundImageView
<com.commit451.foregroundviews.ForegroundImageView
android:id="@+id/profile_image"
android:layout_width="@dimen/larger_image_size"
android:layout_height="@dimen/larger_image_size"
Loading
Loading
Loading
Loading
@@ -10,7 +10,7 @@ buildscript {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
//check with ./gradlew dependencyUpdates
classpath 'com.github.ben-manes:gradle-versions-plugin:0.12.0'
classpath 'io.fabric.tools:gradle:1.21.6'
classpath 'io.fabric.tools:gradle:1.21.7'
}
}
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment