@@ -22,7 +22,21 @@ jobs:
|
|||||||
run: chmod +x ./gradlew
|
run: chmod +x ./gradlew
|
||||||
|
|
||||||
- name: Verify AAR File Integrity
|
- name: Verify AAR File Integrity
|
||||||
run: unzip -t app/libs/firefly-go.aar || (echo "AAR file is corrupted! Fix it in the repo." && exit 1)
|
run: |
|
||||||
|
FILE="app/libs/firefly-go.aar"
|
||||||
|
if [ ! -f "$FILE" ]; then
|
||||||
|
echo "❌ File not found: $FILE"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "📄 File info:"
|
||||||
|
ls -lh "$FILE"
|
||||||
|
|
||||||
|
echo "🖇 Check AAR content:"
|
||||||
|
unzip -l "$FILE" || (echo "❌ AAR file is corrupted! Fix it in the repo." && exit 1)
|
||||||
|
|
||||||
|
echo "✅ AAR file seems OK"
|
||||||
|
|
||||||
|
|
||||||
- name: Clean Gradle
|
- name: Clean Gradle
|
||||||
run: ./gradlew clean
|
run: ./gradlew clean
|
||||||
|
|||||||
13
.idea/deviceManager.xml
generated
Normal file
13
.idea/deviceManager.xml
generated
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="DeviceTable">
|
||||||
|
<option name="columnSorters">
|
||||||
|
<list>
|
||||||
|
<ColumnSorterState>
|
||||||
|
<option name="column" value="Name" />
|
||||||
|
<option name="order" value="ASCENDING" />
|
||||||
|
</ColumnSorterState>
|
||||||
|
</list>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
Reference in New Issue
Block a user