Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit de42382f authored by Aishwarya Mallampati's avatar Aishwarya Mallampati Committed by Android (Google) Code Review
Browse files

Merge "Implementation of premium sms metrics."

parents 23af096b dc7e91f2
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -189,6 +189,13 @@ public class ConfigUpdateInstallReceiver extends BroadcastReceiver {
            if (!parent.exists()) {
                throw new IOException("Failed to create directory " + parent.getCanonicalPath());
            }

            // Give executable permissions to parent folders.
            while (!(parent.equals(updateDir))) {
                parent.setExecutable(true, false);
                parent = parent.getParentFile();
            }

            // create the temporary file
            tmp = File.createTempFile("journal", "", dir);
            // mark tmp -rw-r--r--