-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
138 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
product/gradle-plugin/src/test/integration/data/AbiFilters/invalid_32bit/app/build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
apply plugin: 'com.android.application' | ||
apply plugin: 'com.chaquo.python' | ||
|
||
android { | ||
namespace "com.chaquo.python.test" | ||
compileSdk 23 | ||
defaultConfig { | ||
applicationId "com.chaquo.python.test" | ||
minSdk 21 | ||
targetSdk 23 | ||
versionCode 1 | ||
versionName "0.0.1" | ||
python { | ||
version "3.12" | ||
} | ||
ndk { | ||
abiFilters "x86" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ android { | |
version "3.10" | ||
} | ||
ndk { | ||
abiFilters "x86" | ||
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ android { | |
version "3.11" | ||
} | ||
ndk { | ||
abiFilters "x86" | ||
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64" | ||
} | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
product/gradle-plugin/src/test/integration/data/PythonVersion/3.12/app/build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
plugins { | ||
id 'com.android.application' | ||
id 'com.chaquo.python' | ||
} | ||
|
||
android { | ||
namespace "com.chaquo.python.test" | ||
compileSdk 23 | ||
|
||
defaultConfig { | ||
applicationId "com.chaquo.python.test" | ||
minSdk 21 | ||
targetSdk 23 | ||
versionCode 1 | ||
versionName "0.0.1" | ||
python { | ||
version "3.12" | ||
} | ||
ndk { | ||
abiFilters "arm64-v8a", "x86_64" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ android { | |
version "3.8" | ||
} | ||
ndk { | ||
abiFilters "x86" | ||
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ android { | |
version "3.9" | ||
} | ||
ndk { | ||
abiFilters "x86" | ||
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Cython==0.29.32 | ||
Cython==0.29.36 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters