Add navigation- prefix to modules, move to 1.0.0-alpha01

To align with androidx, add the "navigation-" prefix to
all modules (i.e., you add
navigation:navigation-fragment:1.0.0-alpha01 as a
dependency).

Update version number to 1.0.0-alpha01 to prepare
for the first release.

Test: ./gradlew createArchive
BUG: 77974620
Change-Id: I606e93499c2fafed8ee0b73bc407a372eddc488b
diff --git a/navigation/runtime/ktx/build.gradle b/navigation/runtime/ktx/build.gradle
index f9e6eaa..d0215f2 100644
--- a/navigation/runtime/ktx/build.gradle
+++ b/navigation/runtime/ktx/build.gradle
@@ -33,11 +33,11 @@
 }
 
 dependencies {
-    api(project(":navigation:runtime"))
+    api(project(":navigation:navigation-runtime"))
     // Ensure that the -ktx dependency graph mirrors the Java dependency graph
-    api(project(":navigation:common-ktx"))
+    api(project(":navigation:navigation-common-ktx"))
     api(KOTLIN_STDLIB)
-    androidTestImplementation(project(":navigation:testing-ktx"))
+    androidTestImplementation(project(":navigation:navigation-testing-ktx"))
     androidTestImplementation(TEST_RUNNER)
     androidTestImplementation(ESPRESSO_CORE)
 }