Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.gradle
.idea

PhotonCore/build
6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion PhotonCore/.gitignore

This file was deleted.

14 changes: 8 additions & 6 deletions PhotonCore/build.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
plugins {
id 'com.android.library'
id 'maven-publish'
id 'org.jetbrains.kotlin.android'
}

repositories {
mavenCentral()
}

android {
compileSdkVersion 30
compileSdkVersion 34
buildToolsVersion "30.0.3"

defaultConfig {
minSdkVersion 24
targetSdkVersion 30
targetSdkVersion 34
versionCode 1
versionName "1.0"

Expand Down Expand Up @@ -44,12 +45,13 @@ afterEvaluate {
}

dependencies {
implementation 'androidx.core:core-ktx:1.10.1'
compileOnly 'org.jetbrains:annotations:15.0'
compileOnly "androidx.annotation:annotation:1.4.0"
compileOnly "androidx.annotation:annotation:1.6.0"

compileOnly 'org.firstinspires.ftc:RobotCore:8.1.0'
compileOnly 'org.firstinspires.ftc:Hardware:8.1.0'
compileOnly 'org.firstinspires.ftc:FtcCommon:8.1.0'
compileOnly 'org.firstinspires.ftc:RobotCore:8.1.1'
compileOnly 'org.firstinspires.ftc:Hardware:8.1.1'
compileOnly 'org.firstinspires.ftc:FtcCommon:8.1.1'
compileOnly 'org.reflections:reflections:0.10.2'
compileOnly 'commons-beanutils:commons-beanutils:1.9.4'

Expand Down
Empty file removed PhotonCore/consumer-rules.pro
Empty file.
21 changes: 0 additions & 21 deletions PhotonCore/proguard-rules.pro

This file was deleted.

This file was deleted.

Loading