Skip to content

Commit

Permalink
Switch from com.mushroomobserver or the more accurate org.mushroomobs…
Browse files Browse the repository at this point in the history
…erver
  • Loading branch information
mo-nathan committed Mar 8, 2024
1 parent 34d721c commit 9148e9a
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .env.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
MUSHROOM_OBSERVER_API_URL=https://mushroomobserver.org
MUSHROOM_OBSERVER_API_KEY=
GOOGLE_MAPS_API_KEY=
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,8 @@ yarn-error.log

# testing
/coverage

# .env
.env
.env.development
.env.production
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ android {
buildToolsVersion rootProject.ext.buildToolsVersion
compileSdk rootProject.ext.compileSdkVersion

namespace "com.mushroomobserver"
namespace "org.mushroomobserver"
defaultConfig {
applicationId "com.mushroomobserver"
applicationId "org.mushroomobserver"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
Expand Down
9 changes: 4 additions & 5 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.mushroomobserver.mobile">
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand All @@ -15,9 +14,9 @@
android:allowBackup="false"
android:theme="@style/AppTheme">

<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/GOOGLE_MAPS_API_KEY"/>
<!-- <meta-data -->
<!-- android:name="com.google.android.geo.API_KEY" -->
<!-- android:value="@string/GOOGLE_MAPS_API_KEY"/> -->

<activity
android:name=".MainActivity"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mushroomobserver
package org.mushroomobserver

import com.facebook.react.ReactActivity
import com.facebook.react.ReactActivityDelegate
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.mushroomobserver
package org.mushroomobserver

import android.app.Application
import com.facebook.react.PackageList
Expand Down

0 comments on commit 9148e9a

Please sign in to comment.