- Create missing capacitor-cordova-android-plugins directory and build files - Add cordova.variables.gradle with proper variable definitions - Create www directory with functional test web app - Add capacitor.config.ts with plugin configuration - Fix test file package names from com.getcapacitor.myapp to com.timesafari.dailynotification - Move test files to correct package directories - Test app now builds successfully and creates APK - Capacitor sync now works (Android portion) - Build script handles both plugin and test app builds The android/app test app is now fully functional and can be used to test the DailyNotification plugin in a real Android environment.
12 lines
436 B
Ruby
12 lines
436 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'CordovaPluginsResources'
|
|
s.version = '0.0.105'
|
|
s.summary = 'Resources for Cordova plugins'
|
|
s.social_media_url = 'https://twitter.com/capacitorjs'
|
|
s.license = 'MIT'
|
|
s.homepage = 'https://capacitorjs.com/'
|
|
s.authors = { 'Ionic Team' => 'hi@ionicframework.com' }
|
|
s.source = { :git => 'https://github.com/ionic-team/capacitor.git', :tag => s.version.to_s }
|
|
s.resources = ['resources/*']
|
|
end
|