cf6cb4508171 — jgindin@chagall 3 years ago
AS / gradle upgrade.
M .idea/gradle.xml +0 -1
@@ 17,7 17,6 @@ 
             <option value="$PROJECT_DIR$/ZmanUtils" />
           </set>
         </option>
-        <option name="resolveModulePerSourceSet" value="false" />
       </GradleProjectSettings>
     </option>
   </component>

          
M .idea/modules.xml +11 -0
@@ 4,9 4,20 @@ 
     <modules>
       <module fileurl="file://$PROJECT_DIR$/zmanim.iml" filepath="$PROJECT_DIR$/zmanim.iml" />
       <module fileurl="file://$PROJECT_DIR$/.idea/modules/Android/zmanim.Android.iml" filepath="$PROJECT_DIR$/.idea/modules/Android/zmanim.Android.iml" />
+      <module fileurl="file://$PROJECT_DIR$/.idea/modules/Android/zmanim.Android.androidTest.iml" filepath="$PROJECT_DIR$/.idea/modules/Android/zmanim.Android.androidTest.iml" />
+      <module fileurl="file://$PROJECT_DIR$/.idea/modules/Android/zmanim.Android.main.iml" filepath="$PROJECT_DIR$/.idea/modules/Android/zmanim.Android.main.iml" />
+      <module fileurl="file://$PROJECT_DIR$/.idea/modules/Android/zmanim.Android.unitTest.iml" filepath="$PROJECT_DIR$/.idea/modules/Android/zmanim.Android.unitTest.iml" />
       <module fileurl="file://$PROJECT_DIR$/.idea/modules/ZehutYosef/zmanim.ZehutYosef.iml" filepath="$PROJECT_DIR$/.idea/modules/ZehutYosef/zmanim.ZehutYosef.iml" />
+      <module fileurl="file://$PROJECT_DIR$/.idea/modules/ZehutYosef/zmanim.ZehutYosef.androidTest.iml" filepath="$PROJECT_DIR$/.idea/modules/ZehutYosef/zmanim.ZehutYosef.androidTest.iml" />
+      <module fileurl="file://$PROJECT_DIR$/.idea/modules/ZehutYosef/zmanim.ZehutYosef.main.iml" filepath="$PROJECT_DIR$/.idea/modules/ZehutYosef/zmanim.ZehutYosef.main.iml" />
+      <module fileurl="file://$PROJECT_DIR$/.idea/modules/ZehutYosef/zmanim.ZehutYosef.unitTest.iml" filepath="$PROJECT_DIR$/.idea/modules/ZehutYosef/zmanim.ZehutYosef.unitTest.iml" />
       <module fileurl="file://$PROJECT_DIR$/.idea/modules/ZmanLib/zmanim.ZmanLib.iml" filepath="$PROJECT_DIR$/.idea/modules/ZmanLib/zmanim.ZmanLib.iml" />
+      <module fileurl="file://$PROJECT_DIR$/.idea/modules/ZmanLib/zmanim.ZmanLib.main.iml" filepath="$PROJECT_DIR$/.idea/modules/ZmanLib/zmanim.ZmanLib.main.iml" />
+      <module fileurl="file://$PROJECT_DIR$/.idea/modules/ZmanLib/zmanim.ZmanLib.test.iml" filepath="$PROJECT_DIR$/.idea/modules/ZmanLib/zmanim.ZmanLib.test.iml" />
+      <module fileurl="file://$PROJECT_DIR$/.idea/modules/ZmanLib/zmanim.ZmanLib.utils.iml" filepath="$PROJECT_DIR$/.idea/modules/ZmanLib/zmanim.ZmanLib.utils.iml" />
       <module fileurl="file://$PROJECT_DIR$/.idea/modules/ZmanUtils/zmanim.ZmanUtils.iml" filepath="$PROJECT_DIR$/.idea/modules/ZmanUtils/zmanim.ZmanUtils.iml" />
+      <module fileurl="file://$PROJECT_DIR$/.idea/modules/ZmanUtils/zmanim.ZmanUtils.main.iml" filepath="$PROJECT_DIR$/.idea/modules/ZmanUtils/zmanim.ZmanUtils.main.iml" />
+      <module fileurl="file://$PROJECT_DIR$/.idea/modules/ZmanUtils/zmanim.ZmanUtils.test.iml" filepath="$PROJECT_DIR$/.idea/modules/ZmanUtils/zmanim.ZmanUtils.test.iml" />
     </modules>
   </component>
 </project>
  No newline at end of file

          
M Android/build.gradle +1 -0
@@ 56,6 56,7 @@ catch ( ignored ) {
 
 
 android {
+  namespace 'com.gindin.zmanim.android'
   compileSdkVersion 30
 
   defaultConfig {

          
M Android/src/main/AndroidManifest.xml +6 -2
@@ 5,7 5,6 @@ 
 
 <manifest
   xmlns:android="http://schemas.android.com/apk/res/android"
-  package="com.gindin.zmanim.android"
   android:installLocation="auto"
 >
 

          
@@ 51,6 50,7 @@ 
 
     <activity
       android:name=".ZmanimActivity"
+      android:exported="true"
     >
       <intent-filter>
         <action android:name="android.intent.action.MAIN"/>

          
@@ 71,7 71,10 @@ 
     <!--
       Register the receiver for the BOOT_COMPLETED notification.
     -->
-    <receiver android:name=".service.ZmanimReceiver">
+    <receiver
+      android:name=".service.ZmanimReceiver"
+      android:exported="false"
+    >
       <intent-filter>
         <action android:name="android.intent.action.BOOT_COMPLETED"/>
         <action android:name="android.intent.action.TIME_SET" />

          
@@ 85,6 88,7 @@ 
     <receiver
       android:name=".location.acquirers.ZmanimLocationAcquiredService"
       android:description="@string/ZmanimLocationServiceDescription"
+      android:exported="false"
     >
       <intent-filter>
         <action android:name="com.gindin.zmanim.android.location.acquirers.ZmanimLocationService.LOCATION_RECEIVED" />

          
M Android/version.properties +2 -2
@@ 2,5 2,5 @@ 
 # Copyright (c) 2021. Jay R. Gindin
 #
 
-#Sun Jul 25 14:12:39 EDT 2021
-AI_VERSION_CODE=393
+#Mon Aug 02 23:21:11 EDT 2021
+AI_VERSION_CODE=394

          
M ZehutYosef/build.gradle +1 -0
@@ 23,6 23,7 @@ project.ext.set( "versionCodeType", Vers
 apply from: '../common/gindin-versioning.gradle'
 
 android {
+  namespace 'com.gindin.zehutyosef'
 
   compileSdkVersion 30
 

          
M ZehutYosef/src/barMitzvah/AndroidManifest.xml +4 -1
@@ 1,7 1,10 @@ 
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  ~ Copyright (c) 2021. Jay R. Gindin
+  -->
+
 <manifest
   xmlns:android="http://schemas.android.com/apk/res/android"
-  package="com.gindin.zehutyosef"
 >
 
   <application

          
M ZehutYosef/src/debug/AndroidManifest.xml +5 -1
@@ 1,7 1,11 @@ 
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  ~ Copyright (c) 2021. Jay R. Gindin
+  -->
+
 <manifest
   xmlns:android="http://schemas.android.com/apk/res/android"
-  package="com.gindin.zehutyosef">
+>
 
   <!-- for generating traces -->
   <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

          
M ZehutYosef/src/main/AndroidManifest.xml +4 -1
@@ 1,7 1,10 @@ 
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  ~ Copyright (c) 2021. Jay R. Gindin
+  -->
+
 <manifest
   xmlns:android="http://schemas.android.com/apk/res/android"
-  package="com.gindin.zehutyosef"
 >
 
   <application

          
M ZehutYosef/src/sidur/AndroidManifest.xml +4 -1
@@ 1,7 1,10 @@ 
 <?xml version="1.0" encoding="utf-8"?>
+<!--
+  ~ Copyright (c) 2021. Jay R. Gindin
+  -->
+
 <manifest
   xmlns:android="http://schemas.android.com/apk/res/android"
-  package="com.gindin.zehutyosef"
 >
 
   <application

          
M build.gradle +1 -1
@@ 13,7 13,7 @@ buildscript {
     google()
   }
   dependencies {
-    classpath 'com.android.tools.build:gradle:7.0.0'
+    classpath 'com.android.tools.build:gradle:7.0.3'
 
     // See https://github.com/moallemi/gradle-advanced-build-version
     classpath 'org.moallemi.gradle.advanced-build-version:gradle-plugin:1.5.0'