-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from rh-robotics/teo-migration-guide
Add Migration Guide, Update other markdown files.
- Loading branch information
Showing
4 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Migrating from [NoahBres/MeepMeep](https://github.com/NoahBres/MeepMeep) | ||
1. Locate and open the build.gradle file for the MeepMeep module | ||
<img width="508" alt="Step-5" src="https://github.com/user-attachments/assets/4857d3f0-1e5b-4bc5-bec8-158cb2b49ecf"> | ||
|
||
2. Replace the `dependencies` section with the following: | ||
|
||
``` | ||
dependencies { | ||
implementation 'com.github.rh-robotics:MeepMeep:v1.0.0' | ||
} | ||
``` | ||
|
||
3. When prompted by Android Studio, click on `Sync Now` to update the project with the new dependency | ||
<img width="965" alt="Step-7" src="https://github.com/user-attachments/assets/9453647d-1f33-44f3-9072-a329ddded062"> | ||
|
||
4. In your main MeepMeep class, replace any import statements that reference `com.noahbres.meepmeep` with `org.rowlandhall.meepmeep` | ||
|
||
5. You have now successfully migrated from NoahBres/MeepMeep to rh-robotics/MeepMeep! 🎉 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters