Skip to content

Commit

Permalink
Fix namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
SamYStudiO committed Dec 22, 2023
1 parent 319d012 commit 5ced53e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rx-location-manager-nmea-sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
defaultConfig {
minSdk = libs.versions.minSdk.get().toInt()
targetSdk = libs.versions.targetSdk.get().toInt()
applicationId = "net.samystudio.rxlocationmanager.altitude"
applicationId = "net.samystudio.rxlocationmanager.nmea"
versionCode = 1
versionName = "1.0"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.junit.Test
class GSATest {
@Test
fun validate() {
val gsa = GSA("\$GNGSA,A,3,2,6,9,14,17,19,20,24,28,,,,0.8,0.5,0.6,1*32")
val gsa = GSA("\$GPGSA,M,3,,,22,,,85,,,14,23,,,10.1,12.2,14.4*07")

assertEquals("GPGSA", gsa.type)
assertEquals(GSA.SelectionMode.M, gsa.selectionMode)
Expand Down
2 changes: 1 addition & 1 deletion rx-location-manager-sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
defaultConfig {
minSdk = libs.versions.minSdk.get().toInt()
targetSdk = libs.versions.targetSdk.get().toInt()
applicationId = "net.samystudio.rxlocationmanager.altitude"
applicationId = "net.samystudio.rxlocationmanager"
versionCode = 1
versionName = "1.0"
}
Expand Down

0 comments on commit 5ced53e

Please sign in to comment.