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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ similar performance.

Download
-------------
Conscrypt supports **Java 8** or later on OpenJDK and **KitKat (API Level
19)** or later on Android. The build artifacts are available on Maven Central.
Conscrypt supports **Java 8** or later on OpenJDK and **Lollipop (API Level
21)** or later on Android. The build artifacts are available on Maven Central.

### Download JARs
You can download
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ext {
androidSdkInstalled = file("$androidHome").exists()
androidVersionCode = 1
androidVersionName = "$version"
androidMinSdkVersion = 19
androidMinSdkVersion = 21
androidTargetSdkVersion = 26
androidNdkVersion = '27.3.13750724'
androidCmakeVersion = '3.22.1'
Expand Down
2 changes: 1 addition & 1 deletion fix_format.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from typing import List, FrozenSet

CLANG_FORMAT_BIN: str = "clang-format"
PROJECT_PREFIX: str = "//depot/google3/third_party/java_src/conscrypt/"
PROJECT_PREFIX: str = "//depot/google3/third_party/java/conscrypt/main_src/"
VALID_EXTENSIONS: FrozenSet[str] = frozenset({".java", ".cc", ".h", ".cpp", ".c"})

def get_g4_output() -> str:
Expand Down
4 changes: 2 additions & 2 deletions skills/conscrypt_formatting/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: conscrypt-formatting
description: >-
Automatically formats C++, Java, and C source files in the Conscrypt directory using a project-specific formatting tool. Use when you have modified any C++, Java, or C files under `third_party/java_src/conscrypt/` and need to ensure they comply with project style before committing or submitting. Don't use for general Google3 formatting (use the standard `g4 fix` or `hg fix` instead unless working in Conscrypt).
Automatically formats C++, Java, and C source files in the Conscrypt directory using a project-specific formatting tool. Use when you have modified any C++, Java, or C files under `third_party/java/conscrypt/main_src/` and need to ensure they comply with project style before committing or submitting. Don't use for general Google3 formatting (use the standard `g4 fix` or `hg fix` instead unless working in Conscrypt).
---

# Conscrypt Formatting
Expand All @@ -25,5 +25,5 @@ formatters are not sufficient as Conscrypt uses a specific configuration.
Run the Python script located in the Conscrypt root directory:

```bash
python3 third_party/java_src/conscrypt/fix_format.py
python3 third_party/java/conscrypt/main_src/fix_format.py
```
6 changes: 3 additions & 3 deletions testing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ sourceSets {
dependencies {
compileOnly project(':conscrypt-constants')

implementation libs.bouncycastle.apis
implementation libs.bouncycastle.provider
api libs.junit
implementation libs.bouncycastle.apis,
libs.bouncycastle.provider,
libs.junit
}

// No public methods here.
Expand Down
Loading