如何让我的jcenter库始终使用最新的android-support版本?

时间:2017-02-08 03:53:15

标签: android android-support-library

在我的libray项目中,它使用 public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { // get screen width int screenWidth = ... // get the root view of the fragment View root = inflater.inflate(R.id.your_layout, container, false); // set layout_width through LayoutParams root.setLayoutParams(new ViewGroup.LayoutParams(screenWidth, ViewGroup.LayoutParams.MATCH_PARENT)); return root; } 库,如果我上传到jcenter,它将不能更改依赖版本,我怎么能总是使用最新版本的android-support使用这个图书馆? enter image description here

0 个答案:

没有答案