package me.bell.librarydemo;
import android.os.Bundle;
import android.support.annotation.Nullable;
/**
* @Info
* @Auth Bello
* @Time 18-4-18 下午6:04
* @Ver
*/
public class SecondActivity extends BaseActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
}
}