Error from apksigner: ERROR (Jar signer CERT.RSA): JAR signature
META-INF/CERT.SF indicates the APK is signed using APK Signature Scheme
v2 but no such signature was found. Signature stripped?
Does this error have anything to do with the strange fact that the APK-file is 155 MB?
My Python/Kivy code is only about 56 KB (including comments and such).
And it uses these modules:
import kivy
kivy.require('1.11.1')
# Developed in Python 3.6
from
kivy.app import App
from kivy.uix.label import Label
from kivy.uix.tabbedpanel import TabbedPanel
from kivy.lang import Builder
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.floatlayout import FloatLayout
import kivy.metrics
from kivy.properties import *
from kivy.event import EventDispatcher
from kivy.uix.widget import Widget
from kivy.graphics import *
import time
import os
import json
import random
import math
Any help would be appreciated. Thank you!