Skip to content

Commit

Permalink
fix : demo use same group in different module.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhi1ong committed Jul 12, 2017
1 parent 8c69722 commit 62201ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void onClick(View v) {
break;
case R.id.kotlinNavigation:
ARouter.getInstance()
.build("/test/kotlin")
.build("/kotlin/test")
.withString("name", "老王")
.withInt("age", 23)
.navigation();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import com.alibaba.android.arouter.facade.annotation.Route
import com.alibaba.android.arouter.launcher.ARouter
import kotlinx.android.synthetic.main.activity_kotlin_test.*

@Route(path = "/test/kotlin")
@Route(path = "/kotlin/test")
class KotlinTestActivity : Activity() {

@Autowired
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import com.alibaba.android.arouter.facade.annotation.Route;

@Route(path = "/test/normal/activity")
@Route(path = "/kotlin/java")
public class TestNormalActivity extends AppCompatActivity {

@Override
Expand Down

0 comments on commit 62201ba

Please sign in to comment.