ARouter Source Analysis 1: Initialization Process
ARouter Source Analysis II: navigation Process
Arouter is simple to use
@Route(path = "/image/imageActivity")
class MainActivity : AppCompatActivity() {
@Autowired(name = "tip")
@JvmField
var mTip: String? = ""
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
ARouter ...
Added by Jenk on Tue, 21 Dec 2021 16:04:08 +0200
Arouter usage and principle 2: source code introduction
preface
I divide arouter into development phase, compilation phase and running phase, which correspond to the three dependent packages of arouter respectively
1, Development phase (arouter annotation)
Arouter annotation mainly defines annotations and related parameters for us to use
2, Compilation phase (arouter compiler)
Arou ...
Added by Justin98TransAm on Tue, 23 Nov 2021 02:40:47 +0200