commit 7586f4d25abba774b7b5e3ba7779ac6550d2dc38 Author: adrianvic Date: Wed Sep 20 18:40:08 2023 -0300 First commit diff --git a/APKrenamer.sln b/APKrenamer.sln new file mode 100644 index 0000000..f1abb0a --- /dev/null +++ b/APKrenamer.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.23107.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "APKrenamer", "APKrenamer\APKrenamer.csproj", "{BA578C65-7B9F-4B80-8094-598B258B6402}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BA578C65-7B9F-4B80-8094-598B258B6402}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BA578C65-7B9F-4B80-8094-598B258B6402}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BA578C65-7B9F-4B80-8094-598B258B6402}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BA578C65-7B9F-4B80-8094-598B258B6402}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/APKrenamer/APKrenamer.csproj b/APKrenamer/APKrenamer.csproj new file mode 100644 index 0000000..c72de7f --- /dev/null +++ b/APKrenamer/APKrenamer.csproj @@ -0,0 +1,96 @@ + + + + + Debug + AnyCPU + {BA578C65-7B9F-4B80-8094-598B258B6402} + WinExe + Properties + APKrenamer + APKrenamer + v3.5 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 0 + + + icon.ico + + + + + ..\..\..\..\..\Downloads\Csharp.Apk-Reader.dll + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + True + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + + \ No newline at end of file diff --git a/APKrenamer/Form1.Designer.cs b/APKrenamer/Form1.Designer.cs new file mode 100644 index 0000000..6f1cb55 --- /dev/null +++ b/APKrenamer/Form1.Designer.cs @@ -0,0 +1,169 @@ +namespace APKrenamer +{ + partial class mainWindow + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(mainWindow)); + this.lbTitle = new System.Windows.Forms.Label(); + this.btStart = new System.Windows.Forms.Button(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.btFile = new System.Windows.Forms.Button(); + this.textBox2 = new System.Windows.Forms.TextBox(); + this.textBox3 = new System.Windows.Forms.TextBox(); + this.checkBox1 = new System.Windows.Forms.CheckBox(); + this.button1 = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // lbTitle + // + this.lbTitle.AutoSize = true; + this.lbTitle.Font = new System.Drawing.Font("Segoe UI", 20F); + this.lbTitle.Location = new System.Drawing.Point(5, 9); + this.lbTitle.Name = "lbTitle"; + this.lbTitle.Size = new System.Drawing.Size(186, 37); + this.lbTitle.TabIndex = 0; + this.lbTitle.Text = "apk renamer ;)"; + // + // btStart + // + this.btStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btStart.Location = new System.Drawing.Point(111, 249); + this.btStart.Name = "btStart"; + this.btStart.Size = new System.Drawing.Size(49, 23); + this.btStart.TabIndex = 1; + this.btStart.Text = "Start"; + this.btStart.UseVisualStyleBackColor = true; + this.btStart.Click += new System.EventHandler(this.btStart_Click); + // + // textBox1 + // + this.textBox1.BackColor = System.Drawing.Color.Black; + this.textBox1.ForeColor = System.Drawing.Color.White; + this.textBox1.Location = new System.Drawing.Point(12, 58); + this.textBox1.Name = "textBox1"; + this.textBox1.ReadOnly = true; + this.textBox1.Size = new System.Drawing.Size(260, 22); + this.textBox1.TabIndex = 2; + this.textBox1.Text = "Files:"; + // + // btFile + // + this.btFile.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btFile.Location = new System.Drawing.Point(166, 249); + this.btFile.Name = "btFile"; + this.btFile.Size = new System.Drawing.Size(78, 23); + this.btFile.TabIndex = 3; + this.btFile.Text = "Select file"; + this.btFile.UseVisualStyleBackColor = true; + this.btFile.Click += new System.EventHandler(this.btFile_Click); + // + // textBox2 + // + this.textBox2.BackColor = System.Drawing.Color.Black; + this.textBox2.ForeColor = System.Drawing.Color.White; + this.textBox2.Location = new System.Drawing.Point(12, 86); + this.textBox2.Name = "textBox2"; + this.textBox2.Size = new System.Drawing.Size(260, 22); + this.textBox2.TabIndex = 4; + this.textBox2.Text = "%name% %ver%"; + // + // textBox3 + // + this.textBox3.BackColor = System.Drawing.Color.Black; + this.textBox3.ForeColor = System.Drawing.Color.White; + this.textBox3.Location = new System.Drawing.Point(12, 114); + this.textBox3.Multiline = true; + this.textBox3.Name = "textBox3"; + this.textBox3.ReadOnly = true; + this.textBox3.Size = new System.Drawing.Size(260, 129); + this.textBox3.TabIndex = 6; + this.textBox3.Text = "-=LOG=-"; + // + // checkBox1 + // + this.checkBox1.AutoSize = true; + this.checkBox1.Location = new System.Drawing.Point(12, 253); + this.checkBox1.Name = "checkBox1"; + this.checkBox1.Size = new System.Drawing.Size(93, 17); + this.checkBox1.TabIndex = 7; + this.checkBox1.Text = "Ignore errors"; + this.checkBox1.UseVisualStyleBackColor = true; + // + // button1 + // + this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.button1.Location = new System.Drawing.Point(249, 249); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(23, 23); + this.button1.TabIndex = 8; + this.button1.Text = "?"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // mainWindow + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.Black; + this.ClientSize = new System.Drawing.Size(284, 281); + this.Controls.Add(this.button1); + this.Controls.Add(this.checkBox1); + this.Controls.Add(this.textBox3); + this.Controls.Add(this.textBox2); + this.Controls.Add(this.btFile); + this.Controls.Add(this.textBox1); + this.Controls.Add(this.btStart); + this.Controls.Add(this.lbTitle); + this.Font = new System.Drawing.Font("Segoe UI", 8.25F); + this.ForeColor = System.Drawing.Color.White; + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "mainWindow"; + this.Opacity = 0.9D; + this.ShowIcon = false; + this.Text = "APK Renamer"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label lbTitle; + private System.Windows.Forms.Button btStart; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Button btFile; + private System.Windows.Forms.TextBox textBox2; + internal System.Windows.Forms.TextBox textBox3; + private System.Windows.Forms.CheckBox checkBox1; + private System.Windows.Forms.Button button1; + } +} + diff --git a/APKrenamer/Form1.cs b/APKrenamer/Form1.cs new file mode 100644 index 0000000..31cc382 --- /dev/null +++ b/APKrenamer/Form1.cs @@ -0,0 +1,112 @@ +using System; +using System.IO; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Windows.Forms; +using Csharp.Apk_Reader; + +namespace APKrenamer +{ + public partial class mainWindow : Form + { + // Initializing variables + List path = new List(); + string diagCurrentFileName; + + // mainwindow stuff + public mainWindow() + { + InitializeComponent(); + } + + // On btStart click + private void btStart_Click(object sender, EventArgs e) + { + // initialize a new instance of Apk_Reader as var "read" + var read = new Apk_Reader(); + // Create "output" folder + Directory.CreateDirectory("./output"); + // For every file on path... + for (int i = path.Count - 1; i >= 0; i--) + { + // ...try to pass it to ApkInfo and save stuff on variables + try + { + string filename = path[i]; + diagCurrentFileName = filename; + ApkInfo file_info = read.Get_File_Info(filename); + string apkName = file_info.apkName; + string versionName = file_info.versionName; + string packageName = file_info.packageName; + string sdkVersion = file_info.sdkVersion; + string targetSdkVersion = file_info.targetSdkVersion; + string versionCode = file_info.versionCode; + string output = textBox2.Text; + // Replace the variables with it`s content + output = output.Replace("%name%", apkName).Replace("%ver%", versionName).Replace("%package%", packageName) + .Replace("%sdk%", sdkVersion).Replace("%vercode%", versionCode).Replace("%sdk%", sdkVersion).Replace("%target%", targetSdkVersion); + log("File name: " + output); + // Copy file with the new filename + File.Copy(filename, "./output/" + output + ".apk"); + } + // In case of exception, ignore it just sending a messagebox + catch (System.Exception) + { + // Check if it should ignore the error + if (checkBox1.Checked) + { + log("An error ocurred with" + diagCurrentFileName + ", but was ignored!"); + } + else + { + MessageBox.Show("An error ocurred while copying " + diagCurrentFileName + ", please verify if the filename is valid or try removing special characters from the original filename"); + } + + } + } + } + + // On btFile click + private void btFile_Click(object sender, EventArgs e) + { + // Shows a OpenFileDialog named openFileDialog + using (OpenFileDialog openFileDialog = new OpenFileDialog()) + { + // Default dir + openFileDialog.InitialDirectory = "c:\\"; + // Filters for apk or other files + openFileDialog.Filter = "Android Package Kit (*.apk)|*.apk|Any file with a valid manifest (*.*)|*.*"; + // Allows user to select more than 1 file + openFileDialog.Multiselect = true; + + // Checks if the user selected a file + if (openFileDialog.ShowDialog() == DialogResult.OK) + { + // For every selected file... + for (int i = 0; i < openFileDialog.FileNames.Length; i++) + { + // Add it to path + path.Add(openFileDialog.FileNames[i]); + // Add it to the directory textbox + textBox1.AppendText(" " + openFileDialog.FileNames[i]); + } + } + } + } + + // For convenience sake, it adds a new line on log + public void log(string message) + { + textBox3.AppendText(Environment.NewLine + message); + } + + private void button1_Click(object sender, EventArgs e) + { + MessageBox.Show("Variables:\n%target% - Target SDK version\n%sdk% - Minimum SDK version\n%package% - Package name\n%name% - Application name\n%ver% - Application version\n%vercode% - Version code"); + } + } +} diff --git a/APKrenamer/Form1.resx b/APKrenamer/Form1.resx new file mode 100644 index 0000000..87b865f --- /dev/null +++ b/APKrenamer/Form1.resx @@ -0,0 +1,161 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + 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 + Ort9AAAAAElFTkSuQmCC + + + \ No newline at end of file diff --git a/APKrenamer/Program.cs b/APKrenamer/Program.cs new file mode 100644 index 0000000..603cbc1 --- /dev/null +++ b/APKrenamer/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace APKrenamer +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new mainWindow()); + } + } +} diff --git a/APKrenamer/Properties/AssemblyInfo.cs b/APKrenamer/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..750b2a5 --- /dev/null +++ b/APKrenamer/Properties/AssemblyInfo.cs @@ -0,0 +1,39 @@ +using System.Resources; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("APK Renamer")] +[assembly: AssemblyDescription("Bulk rename your APK files according to it's manifest info")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("tenkuma.")] +[assembly: AssemblyProduct("APK renamer")] +[assembly: AssemblyCopyright("Copyright © 2023")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("ba578c65-7b9f-4b80-8094-598b258b6402")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: NeutralResourcesLanguage("en")] + diff --git a/APKrenamer/Properties/Resources.Designer.cs b/APKrenamer/Properties/Resources.Designer.cs new file mode 100644 index 0000000..bcc6d8a --- /dev/null +++ b/APKrenamer/Properties/Resources.Designer.cs @@ -0,0 +1,63 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace APKrenamer.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("APKrenamer.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + } +} diff --git a/APKrenamer/Properties/Resources.resx b/APKrenamer/Properties/Resources.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/APKrenamer/Properties/Resources.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/APKrenamer/Properties/Settings.Designer.cs b/APKrenamer/Properties/Settings.Designer.cs new file mode 100644 index 0000000..3f60311 --- /dev/null +++ b/APKrenamer/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace APKrenamer.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/APKrenamer/Properties/Settings.settings b/APKrenamer/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/APKrenamer/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/APKrenamer/Resources/Windows 81 RTM default new wallpapers lock screen image now.png b/APKrenamer/Resources/Windows 81 RTM default new wallpapers lock screen image now.png new file mode 100644 index 0000000..4ceee50 Binary files /dev/null and b/APKrenamer/Resources/Windows 81 RTM default new wallpapers lock screen image now.png differ diff --git a/APKrenamer/bin/Debug/APKrenamer.exe b/APKrenamer/bin/Debug/APKrenamer.exe new file mode 100644 index 0000000..5ea59e3 Binary files /dev/null and b/APKrenamer/bin/Debug/APKrenamer.exe differ diff --git a/APKrenamer/bin/Debug/APKrenamer.pdb b/APKrenamer/bin/Debug/APKrenamer.pdb new file mode 100644 index 0000000..b0b8de5 Binary files /dev/null and b/APKrenamer/bin/Debug/APKrenamer.pdb differ diff --git a/APKrenamer/bin/Debug/APKrenamer.vshost.exe b/APKrenamer/bin/Debug/APKrenamer.vshost.exe new file mode 100644 index 0000000..1ef18e8 Binary files /dev/null and b/APKrenamer/bin/Debug/APKrenamer.vshost.exe differ diff --git a/APKrenamer/bin/Debug/APKrenamer.vshost.exe.manifest b/APKrenamer/bin/Debug/APKrenamer.vshost.exe.manifest new file mode 100644 index 0000000..061c9ca --- /dev/null +++ b/APKrenamer/bin/Debug/APKrenamer.vshost.exe.manifest @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/APKrenamer/bin/Debug/Csharp.Apk-Reader.dll b/APKrenamer/bin/Debug/Csharp.Apk-Reader.dll new file mode 100644 index 0000000..9302ed6 Binary files /dev/null and b/APKrenamer/bin/Debug/Csharp.Apk-Reader.dll differ diff --git a/APKrenamer/bin/Debug/output/Mini Karaoke 1.15.apk b/APKrenamer/bin/Debug/output/Mini Karaoke 1.15.apk new file mode 100644 index 0000000..d2967fa Binary files /dev/null and b/APKrenamer/bin/Debug/output/Mini Karaoke 1.15.apk differ diff --git a/APKrenamer/bin/Debug/output/WunderRadio 1.9.apk b/APKrenamer/bin/Debug/output/WunderRadio 1.9.apk new file mode 100644 index 0000000..5508cd1 Binary files /dev/null and b/APKrenamer/bin/Debug/output/WunderRadio 1.9.apk differ diff --git a/APKrenamer/bin/Debug/output/XiiaLive 2.0.7.apk b/APKrenamer/bin/Debug/output/XiiaLive 2.0.7.apk new file mode 100644 index 0000000..51218e1 Binary files /dev/null and b/APKrenamer/bin/Debug/output/XiiaLive 2.0.7.apk differ diff --git a/APKrenamer/bin/Debug/output/[Android] My Music Quiz 1.0@min3tar.apk b/APKrenamer/bin/Debug/output/[Android] My Music Quiz 1.0@min3tar.apk new file mode 100644 index 0000000..621d5f5 Binary files /dev/null and b/APKrenamer/bin/Debug/output/[Android] My Music Quiz 1.0@min3tar.apk differ diff --git a/APKrenamer/bin/Debug/output/xScope 5.31.apk b/APKrenamer/bin/Debug/output/xScope 5.31.apk new file mode 100644 index 0000000..127a3b9 Binary files /dev/null and b/APKrenamer/bin/Debug/output/xScope 5.31.apk differ diff --git a/APKrenamer/bin/Debug/output/xScope 5.36.apk b/APKrenamer/bin/Debug/output/xScope 5.36.apk new file mode 100644 index 0000000..a7bc917 Binary files /dev/null and b/APKrenamer/bin/Debug/output/xScope 5.36.apk differ diff --git a/APKrenamer/bin/Debug/output/yxplayer 1.4.4.apk b/APKrenamer/bin/Debug/output/yxplayer 1.4.4.apk new file mode 100644 index 0000000..88eeaf8 Binary files /dev/null and b/APKrenamer/bin/Debug/output/yxplayer 1.4.4.apk differ diff --git a/APKrenamer/bin/Release/APKrenamer.exe b/APKrenamer/bin/Release/APKrenamer.exe new file mode 100644 index 0000000..ec3f75d Binary files /dev/null and b/APKrenamer/bin/Release/APKrenamer.exe differ diff --git a/APKrenamer/bin/Release/APKrenamer.pdb b/APKrenamer/bin/Release/APKrenamer.pdb new file mode 100644 index 0000000..9e29437 Binary files /dev/null and b/APKrenamer/bin/Release/APKrenamer.pdb differ diff --git a/APKrenamer/bin/Release/APKrenamer.vshost.exe b/APKrenamer/bin/Release/APKrenamer.vshost.exe new file mode 100644 index 0000000..1ef18e8 Binary files /dev/null and b/APKrenamer/bin/Release/APKrenamer.vshost.exe differ diff --git a/APKrenamer/bin/Release/APKrenamer.vshost.exe.manifest b/APKrenamer/bin/Release/APKrenamer.vshost.exe.manifest new file mode 100644 index 0000000..061c9ca --- /dev/null +++ b/APKrenamer/bin/Release/APKrenamer.vshost.exe.manifest @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/APKrenamer/bin/Release/Csharp.Apk-Reader.dll b/APKrenamer/bin/Release/Csharp.Apk-Reader.dll new file mode 100644 index 0000000..9302ed6 Binary files /dev/null and b/APKrenamer/bin/Release/Csharp.Apk-Reader.dll differ diff --git a/APKrenamer/icon.ico b/APKrenamer/icon.ico new file mode 100644 index 0000000..74554ea Binary files /dev/null and b/APKrenamer/icon.ico differ diff --git a/APKrenamer/obj/Debug/APKrenamer.Properties.Resources.resources b/APKrenamer/obj/Debug/APKrenamer.Properties.Resources.resources new file mode 100644 index 0000000..06c24d0 Binary files /dev/null and b/APKrenamer/obj/Debug/APKrenamer.Properties.Resources.resources differ diff --git a/APKrenamer/obj/Debug/APKrenamer.csproj.FileListAbsolute.txt b/APKrenamer/obj/Debug/APKrenamer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c222a51 --- /dev/null +++ b/APKrenamer/obj/Debug/APKrenamer.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +c:\users\adrian\documents\visual studio 2015\Projects\APKrenamer\APKrenamer\bin\Debug\APKrenamer.exe +c:\users\adrian\documents\visual studio 2015\Projects\APKrenamer\APKrenamer\bin\Debug\APKrenamer.pdb +c:\users\adrian\documents\visual studio 2015\Projects\APKrenamer\APKrenamer\obj\Debug\APKrenamer.csprojResolveAssemblyReference.cache +c:\users\adrian\documents\visual studio 2015\Projects\APKrenamer\APKrenamer\obj\Debug\APKrenamer.mainWindow.resources +c:\users\adrian\documents\visual studio 2015\Projects\APKrenamer\APKrenamer\obj\Debug\APKrenamer.Properties.Resources.resources +c:\users\adrian\documents\visual studio 2015\Projects\APKrenamer\APKrenamer\obj\Debug\APKrenamer.csproj.GenerateResource.Cache +c:\users\adrian\documents\visual studio 2015\Projects\APKrenamer\APKrenamer\obj\Debug\APKrenamer.exe +c:\users\adrian\documents\visual studio 2015\Projects\APKrenamer\APKrenamer\obj\Debug\APKrenamer.pdb +c:\users\adrian\documents\visual studio 2015\Projects\APKrenamer\APKrenamer\bin\Debug\Csharp.Apk-Reader.dll diff --git a/APKrenamer/obj/Debug/APKrenamer.csproj.GenerateResource.Cache b/APKrenamer/obj/Debug/APKrenamer.csproj.GenerateResource.Cache new file mode 100644 index 0000000..f38cf1b Binary files /dev/null and b/APKrenamer/obj/Debug/APKrenamer.csproj.GenerateResource.Cache differ diff --git a/APKrenamer/obj/Debug/APKrenamer.csprojResolveAssemblyReference.cache b/APKrenamer/obj/Debug/APKrenamer.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000..3246605 Binary files /dev/null and b/APKrenamer/obj/Debug/APKrenamer.csprojResolveAssemblyReference.cache differ diff --git a/APKrenamer/obj/Debug/APKrenamer.exe b/APKrenamer/obj/Debug/APKrenamer.exe new file mode 100644 index 0000000..5ea59e3 Binary files /dev/null and b/APKrenamer/obj/Debug/APKrenamer.exe differ diff --git a/APKrenamer/obj/Debug/APKrenamer.mainWindow.resources b/APKrenamer/obj/Debug/APKrenamer.mainWindow.resources new file mode 100644 index 0000000..e24822d Binary files /dev/null and b/APKrenamer/obj/Debug/APKrenamer.mainWindow.resources differ diff --git a/APKrenamer/obj/Debug/APKrenamer.pdb b/APKrenamer/obj/Debug/APKrenamer.pdb new file mode 100644 index 0000000..b0b8de5 Binary files /dev/null and b/APKrenamer/obj/Debug/APKrenamer.pdb differ diff --git a/APKrenamer/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/APKrenamer/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..f4d64ed Binary files /dev/null and b/APKrenamer/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/APKrenamer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/APKrenamer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..4862a73 Binary files /dev/null and b/APKrenamer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/APKrenamer/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll b/APKrenamer/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..f07e8bd Binary files /dev/null and b/APKrenamer/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/APKrenamer/obj/Release/APKrenamer.Properties.Resources.resources b/APKrenamer/obj/Release/APKrenamer.Properties.Resources.resources new file mode 100644 index 0000000..06c24d0 Binary files /dev/null and b/APKrenamer/obj/Release/APKrenamer.Properties.Resources.resources differ diff --git a/APKrenamer/obj/Release/APKrenamer.csproj.FileListAbsolute.txt b/APKrenamer/obj/Release/APKrenamer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..bed297f --- /dev/null +++ b/APKrenamer/obj/Release/APKrenamer.csproj.FileListAbsolute.txt @@ -0,0 +1,8 @@ +C:\Users\adrian\Documents\Visual Studio 2015\Projects\APKrenamer\APKrenamer\bin\Release\APKrenamer.exe +C:\Users\adrian\Documents\Visual Studio 2015\Projects\APKrenamer\APKrenamer\bin\Release\APKrenamer.pdb +C:\Users\adrian\Documents\Visual Studio 2015\Projects\APKrenamer\APKrenamer\bin\Release\Csharp.Apk-Reader.dll +C:\Users\adrian\Documents\Visual Studio 2015\Projects\APKrenamer\APKrenamer\obj\Release\APKrenamer.mainWindow.resources +C:\Users\adrian\Documents\Visual Studio 2015\Projects\APKrenamer\APKrenamer\obj\Release\APKrenamer.Properties.Resources.resources +C:\Users\adrian\Documents\Visual Studio 2015\Projects\APKrenamer\APKrenamer\obj\Release\APKrenamer.csproj.GenerateResource.Cache +C:\Users\adrian\Documents\Visual Studio 2015\Projects\APKrenamer\APKrenamer\obj\Release\APKrenamer.exe +C:\Users\adrian\Documents\Visual Studio 2015\Projects\APKrenamer\APKrenamer\obj\Release\APKrenamer.pdb diff --git a/APKrenamer/obj/Release/APKrenamer.csproj.GenerateResource.Cache b/APKrenamer/obj/Release/APKrenamer.csproj.GenerateResource.Cache new file mode 100644 index 0000000..ac131e5 Binary files /dev/null and b/APKrenamer/obj/Release/APKrenamer.csproj.GenerateResource.Cache differ diff --git a/APKrenamer/obj/Release/APKrenamer.exe b/APKrenamer/obj/Release/APKrenamer.exe new file mode 100644 index 0000000..ec3f75d Binary files /dev/null and b/APKrenamer/obj/Release/APKrenamer.exe differ diff --git a/APKrenamer/obj/Release/APKrenamer.mainWindow.resources b/APKrenamer/obj/Release/APKrenamer.mainWindow.resources new file mode 100644 index 0000000..e24822d Binary files /dev/null and b/APKrenamer/obj/Release/APKrenamer.mainWindow.resources differ diff --git a/APKrenamer/obj/Release/APKrenamer.pdb b/APKrenamer/obj/Release/APKrenamer.pdb new file mode 100644 index 0000000..9e29437 Binary files /dev/null and b/APKrenamer/obj/Release/APKrenamer.pdb differ diff --git a/APKrenamer/obj/Release/Csharp.Apk-Reader.dll b/APKrenamer/obj/Release/Csharp.Apk-Reader.dll new file mode 100644 index 0000000..9302ed6 Binary files /dev/null and b/APKrenamer/obj/Release/Csharp.Apk-Reader.dll differ diff --git a/APKrenamer/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/APKrenamer/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..05f0436 Binary files /dev/null and b/APKrenamer/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ