diff --git a/datastore/src/main/proto/AddRecipeInput.proto b/datastore/src/main/proto/AddRecipeInput.proto index 760cc0c..eb6c3b0 100644 --- a/datastore/src/main/proto/AddRecipeInput.proto +++ b/datastore/src/main/proto/AddRecipeInput.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -option java_package = "gq.kirmanak.mealient.datastore.recipe"; +option java_package = "com.atridad.mealient.datastore.recipe"; option java_multiple_files = true; message AddRecipeInput { @@ -11,4 +11,4 @@ message AddRecipeInput { repeated string recipeIngredients = 5; bool isRecipePublic = 6; bool areCommentsDisabled = 7; -} \ No newline at end of file +} diff --git a/features/shopping_lists/build.gradle.kts b/features/shopping_lists/build.gradle.kts index 160c5aa..cf0122b 100644 --- a/features/shopping_lists/build.gradle.kts +++ b/features/shopping_lists/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } android { - namespace = "com.atridad.mealient.shopping_lists" + namespace = "com.atridad.mealient.shopping_list" } ksp {