Skip to content

Commit

Permalink
Merge pull request #169 from cuappdev/justin/playstore-publish
Browse files Browse the repository at this point in the history
Compare Menus Publish (Attempt 1)
  • Loading branch information
thisjustin123 authored Oct 23, 2024
2 parents 6290d8d + 19fe2fb commit 098ccc7
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 7 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/publish-to-play-store-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,27 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up JDK 17
- name: Set up Java 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: wrapper
cache-read-only: false

- name: Create secrets.properties
run: |
echo "${{ secrets.SECRETS_PROPERTIES }}" > secrets.properties
- name: Load Google Service file
env:
DATA: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $DATA | base64 -di > app/google-services.json

- name: Build with Gradle
id: build
run: ./gradlew build
Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/publish-to-play-store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,27 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up JDK 17
- name: Set up Java 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: wrapper
cache-read-only: false

- name: Create secrets.properties
run: |
echo "${{ secrets.SECRETS_PROPERTIES }}" > secrets.properties
- name: Load Google Service file
env:
DATA: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $DATA | base64 -di > app/google-services.json

- name: Build with Gradle
id: build
run: ./gradlew build
Expand Down
6 changes: 2 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ android {
applicationId "com.cornellappdev.android.eatery"
minSdk 28
targetSdk 34
versionCode 69
versionName "blue-1.0.1-crashfix"
versionCode 71
versionName "1.1-compare-menus"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand All @@ -44,7 +44,6 @@ android {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.debug
}
}

Expand Down Expand Up @@ -96,7 +95,6 @@ dependencies {
implementation("androidx.navigation:navigation-fragment-ktx:$nav_version")
implementation("androidx.navigation:navigation-ui-ktx:$nav_version")
implementation("androidx.navigation:navigation-compose:2.6.0-alpha04")
implementation("androidx.navigation:navigation-dynamic-features-fragment:$nav_version")
implementation 'androidx.compose.material:material-icons-core:1.3.1'
implementation 'androidx.compose.material:material-icons-extended:1.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha4'
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ kotlin.code.style=official
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true
org.gradle.caching=true
5 changes: 4 additions & 1 deletion whatsnew/whatsnew-en-US
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
We're working hard to bring you the latest fixes and features to Eatery!
We're working hard to bring you the latest fixes and features to Eatery! Here's what we've been working on:
* Compare Menus - Click the Compare Menus button on the main menu or eatery detail screen to compare menus across several eateries!
* Home Screen UI Reorganization - Eateries nearest to you are now more intuitive to find.
* Menu Selection - Select the top bar on a eatery menu to swap from breakfast, lunch, and dinner!

0 comments on commit 098ccc7

Please sign in to comment.