Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
biezhihua committed Sep 23, 2023
2 parents e844f01 + fad261c commit ca24675
Show file tree
Hide file tree
Showing 451 changed files with 7,558 additions and 4,816 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/android-test-case.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Android Unit Test CI

on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: gradle
- name: run tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 29
working-directory: ./GaiaXAndroid
script: ./gradlew connectedCheck && ./gradlew connectedAndroidTest
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Android CI
name: Android publish CI

on:
push:
Expand Down
Binary file added .gradle/6.7.1/fileChanges/last-build.bin
Binary file not shown.
Binary file added .gradle/6.7.1/fileHashes/fileHashes.lock
Binary file not shown.
File renamed without changes.
Binary file added .gradle/checksums/checksums.lock
Binary file not shown.
Empty file.
Empty file added .gradle/vcs-1/gc.properties
Empty file.
6 changes: 0 additions & 6 deletions GaiaX-Android-QuickJS/.classpath

This file was deleted.

13 changes: 0 additions & 13 deletions GaiaX-Android-QuickJS/.gitignore

This file was deleted.

3 changes: 0 additions & 3 deletions GaiaX-Android-QuickJS/.gitmodules

This file was deleted.

34 changes: 0 additions & 34 deletions GaiaX-Android-QuickJS/.project

This file was deleted.

11 changes: 0 additions & 11 deletions GaiaX-Android-QuickJS/gradle.properties

This file was deleted.

19 changes: 8 additions & 11 deletions GaiaXAnalyze/GXAnalyzeAndroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ allprojects {
repositories {
mavenLocal()
google()
maven { url "https://jitpack.io" }
mavenCentral()
maven { url 'https://mvnrepository.com/artifact/com.github.gundy/semver4j' }
maven { url "https://jitpack.io" }
}
}

Expand All @@ -19,9 +18,8 @@ buildscript {
repositories {
mavenLocal()
google()
maven { url "https://jitpack.io" }
mavenCentral()
maven { url 'https://mvnrepository.com/artifact/com.github.gundy/semver4j' }
maven { url "https://jitpack.io" }
}

dependencies {
Expand Down Expand Up @@ -52,11 +50,6 @@ android {
'-DANDROID_STL=c++_shared'
}
}

ndk {
// support all abi armeabi-v7a arm64-v8a x86 x86_64
// abiFilters 'armeabi-v7a', 'arm64-v8a'
}
}

sourceSets {
Expand Down Expand Up @@ -109,15 +102,19 @@ android {
jvmTarget = '1.8'
}

lintOptions {
abortOnError false
}

buildTypes {
debug {
ndk {
abiFilters "x86", 'armeabi-v7a', 'arm64-v8a'
abiFilters "x86", "x86_64", 'armeabi-v7a', 'arm64-v8a'
}
}
release {
ndk {
abiFilters "x86", 'armeabi-v7a', 'arm64-v8a'
abiFilters 'armeabi-v7a', 'arm64-v8a'
}
}
}
Expand Down
Loading

0 comments on commit ca24675

Please sign in to comment.