Skip to content

Commit

Permalink
change package
Browse files Browse the repository at this point in the history
  • Loading branch information
naivekook authored and teolemon committed Feb 10, 2021
1 parent e0a32be commit a6ab8af
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ import openfoodfacts.github.scrachx.openfood.customtabs.CustomTabActivityHelper
import openfoodfacts.github.scrachx.openfood.customtabs.CustomTabsHelper
import openfoodfacts.github.scrachx.openfood.customtabs.WebViewFallback
import openfoodfacts.github.scrachx.openfood.databinding.ActivityMainBinding
import openfoodfacts.github.scrachx.openfood.feature.changelog.ChangelogDialog
import openfoodfacts.github.scrachx.openfood.features.changelog.ChangelogDialog
import openfoodfacts.github.scrachx.openfood.features.LoginActivity.Companion.LoginContract
import openfoodfacts.github.scrachx.openfood.features.adapters.PhotosAdapter
import openfoodfacts.github.scrachx.openfood.features.additives.AdditiveListActivity
Expand Down Expand Up @@ -899,4 +899,4 @@ class MainActivity : BaseActivity(), NavigationDrawerListener {
const val PRODUCT_SEARCH_KEY = "product_search"
private val LOG_TAG = MainActivity::class.simpleName!!
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package openfoodfacts.github.scrachx.openfood.feature.changelog
package openfoodfacts.github.scrachx.openfood.features.changelog

import com.fasterxml.jackson.annotation.JsonProperty

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package openfoodfacts.github.scrachx.openfood.feature.changelog
package openfoodfacts.github.scrachx.openfood.features.changelog

import android.view.LayoutInflater
import android.view.View
Expand Down Expand Up @@ -54,4 +54,4 @@ class ChangelogAdapter(private val items: List<ChangelogListItem>) : RecyclerVie
itemLabel.text = item.description
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package openfoodfacts.github.scrachx.openfood.feature.changelog
package openfoodfacts.github.scrachx.openfood.features.changelog

import android.content.pm.PackageManager.NameNotFoundException
import android.net.Uri
Expand Down Expand Up @@ -150,4 +150,4 @@ class ChangelogDialog : DialogFragment(R.layout.fragment_changelog) {
private fun getVersion(activity: AppCompatActivity): Long {
return PreferenceManager.getDefaultSharedPreferences(activity).getLong(LAST_VERSION_CODE, 0)
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package openfoodfacts.github.scrachx.openfood.feature.changelog
package openfoodfacts.github.scrachx.openfood.features.changelog

sealed class ChangelogListItem {
data class Header(val version: String, val date: String) : ChangelogListItem()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package openfoodfacts.github.scrachx.openfood.feature.changelog
package openfoodfacts.github.scrachx.openfood.features.changelog

import android.content.Context
import com.fasterxml.jackson.databind.ObjectMapper
Expand Down Expand Up @@ -46,4 +46,4 @@ class ChangelogService(private val context: Context) {
false
}
}
}
}

0 comments on commit a6ab8af

Please sign in to comment.