Skip to content
Merged
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
41 changes: 1 addition & 40 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,43 +38,4 @@ jobs:
${{ runner.os }}-swiftpm-

- name: Run SwiftPM Tests
run: swift test

android-test:
name: Android Tests
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

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

- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-

- name: Grant execute permission for gradlew
working-directory: atlantis-android
run: chmod +x gradlew

- name: Run Android Unit Tests
working-directory: atlantis-android
run: ./gradlew :atlantis:test --no-daemon

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4
with:
name: android-test-results
path: atlantis-android/atlantis/build/reports/tests/
run: swift test
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,6 @@
### Swift Packages Manager (Recommended)
- Add `https://github.com/ProxymanApp/atlantis` to your project

### CocoaPod (Deprecated)
- Add the following line to your Podfile
```bash
pod 'atlantis-proxyman'
```

### 2. Add Required settings to `Info.plist`
1. Open your iOS Project -> Open the `Info.plist` file and add the following keys and values:

Expand Down
2 changes: 1 addition & 1 deletion Sources/Atlantis.swift
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public final class Atlantis: NSObject {
/// Build version of Atlantis
/// It's essential for Proxyman to known if it's compatible with this version
/// Instead of receving the number from the info.plist, we should hardcode here because the info file doesn't exist in SPM
public static let buildVersion: String = "1.33.0"
public static let buildVersion: String = "1.34.0"

/// Start Swizzle all network functions and monitoring the traffic
/// It also starts looking Bonjour network from Proxyman app.
Expand Down
52 changes: 0 additions & 52 deletions atlantis-android/.gitignore

This file was deleted.

Loading