经过自己的尝试还是没有解决unable to find valid certification path to requested target这个问题,最终决定还是寻求大佬的帮助,最后发现是家里不能上外网,导致一些东西不能下载下来,添加了阿里的库之后就能成功运行了。今天也成功的将跑步的轨迹记录存放到realm数据库中

// Generated code from Butter Knife. Do not modify!
package com.james.motion.ui.activity;

import android.view.View;
import android.widget.TextView;
import androidx.annotation.CallSuper;
import androidx.annotation.UiThread;
import butterknife.Unbinder;
import butterknife.internal.Utils;
import com.flyco.tablayout.CommonTabLayout;
import com.james.motion.R;
import com.james.motion.ui.weight.AMapScrollViewPager;
import java.lang.IllegalStateException;
import java.lang.Override;

public class SportRecordDetailsActivity_ViewBinding implements Unbinder {
private SportRecordDetailsActivity target;

@UiThread
public SportRecordDetailsActivity_ViewBinding(SportRecordDetailsActivity target) {
this(target, target.getWindow().getDecorView());
}

@UiThread
public SportRecordDetailsActivity_ViewBinding(SportRecordDetailsActivity target, View source) {
this.target = target;

target.tvTitle = Utils.findRequiredViewAsType(source, R.id.tv_title, "field 'tvTitle'", TextView.class);
target.commonTabLayout = Utils.findRequiredViewAsType(source, R.id.commonTabLayout, "field 'commonTabLayout'", CommonTabLayout.class);
target.mViewPager = Utils.findRequiredViewAsType(source, R.id.vp, "field 'mViewPager'", AMapScrollViewPager.class);
}

@Override
@CallSuper
public void unbind() {
SportRecordDetailsActivity target = this.target;
if (target == null) throw new IllegalStateException("Bindings already cleared.");
this.target = null;

target.tvTitle = null;
target.commonTabLayout = null;
target.mViewPager = null;
}
}
posted on 2020-05-30 17:19  顺儿  阅读(155)  评论(0编辑  收藏  举报