Skip to content

Commit

Permalink
fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
allenftc committed Oct 23, 2024
2 parents 7c8c2d1 + c39806d commit 87b0226
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Android CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
4 changes: 4 additions & 0 deletions TeamCode/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ repositories {

dependencies {
implementation project(':FtcRobotController')
<<<<<<< HEAD
implementation 'org.ftclib.ftclib:core:2.1.1'
implementation 'com.github.Eeshwar-Krishnan:PhotonFTC:v3.0.3-ALPHA'
=======
implementation 'org.ftclib.ftclib:core:2.1.1' // core
>>>>>>> c39806d95af8c69942505b9aab557891d3e51468
}
1 change: 1 addition & 0 deletions build.common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,4 @@ android {
repositories {
}


0 comments on commit 87b0226

Please sign in to comment.